
function imageClick(e,type,url){var msg;msg="Sorry, right click on images has been disabled.";if((type=='enlarge')||(type=='close')){if(navigator.appName=='Netscape'&&e.which==3){if(type=='enlarge'){popUpImage(type);}
else if(type=='close'){window.close();alert(msg);}}
else if(navigator.appName=='Microsoft Internet Explorer'&&event.button==2){if(type=='enlarge'){alert(msg);popUpImage(type);}
else if(type=='close'){alert(msg);window.close();}}}
else if(type=='link'){if(navigator.appName=='Netscape'&&e.which==3){window.location=url;}
else if(navigator.appName=='Microsoft Internet Explorer'&&event.button==2){alert(msg);window.location=url;}}
else if(type=='nothing'){if(navigator.appName=='Netscape'&&e.which==3){return false;}
else if(navigator.appName=='Microsoft Internet Explorer'&&event.button==2){alert(msg);}}}
function imageClick2(e,type){var msg;msg="Sorry, right click on images has been disabled.";if(navigator.appName=='Netscape'&&e.which==3){if((type=='link')||(type=='nothing')){alert(msg);}}}