var pesan = "This picture exclusively belongs to Kuningan Seafood International Restaurant";
function imageProtect(tombol) {
if (navigator.appName=="Microsoft Internet Explorer") {
	if (tombol==2 || tombol==3 || tombol==6 || tombol==7) {
		alert(pesan);
		return false;
	}
} else if (navigator.appName=="Netscape") {
	if (tombol==3) {
		alert(pesan);
		return false;
	}
} else return true;
}
