/*--- Avanquest WebEasy Custom Script ---*/

mes = "Copyright©Persianmylove.com"; 
 
Version = parseInt(navigator.appVersion) 
NetScape = navigator.appName=="Netscape" 
IE = navigator.appName=="Microsoft Internet Explorer" 
 
function fun(th) { 
if (NetScape && th.which > 1){ 
alert(mes) 
return false 
} else if (IE && (event.button >1)) { 
alert(mes) 
return false; 
} 
} 
 
document.onmousedown = fun;

/*--- EndOfFile ---*/

