<!--hide from old
//DISCLAIMER SCRIPT
function copyright() {
	var the_text = "© made & displayed by joseph asghar";
	the_text += "\n info@josephasghar.com";
	the_text += "\n www.josephasghar.com";
	the_text += "\n\n © dr devinder singh bansi.  all rights reserved";
	alert(the_text);
	}
//////////////////////////////
//HIDE MAIL LINK 
function makemail(){
	emailname = "info";
	emailserver = "gastro-uk.com";
	emailsubject = "Feedback%20via%20www.gastro-uk.com";
	document.write("<a href='mailto:" + emailname + "@" + emailserver + " ?subject=" + emailsubject + "'>");
	document.write(emailname + "@" + emailserver);
	document.write("</a>");
	}
//////////////////////////////
//CUSTOM POPUP WINDOWS
function newWindow(url){
mywin=window.open(url, "popup_help", "width=410, height=550,location=0, menubar=0, resizable=0, toolbar=0, status=0, scrollbars=0, titlebar=0, screenX=0, left=0, screenY=0, top=0");
mywin.focus();
}
//////////////////////////////
//NO RIGHT CLICK
function clickIE() {
if (document.all) {
return false;
}
} 
function clickNS(e) {
if (document.layers||(document.getElementById&&!document.all)) { 
if (e.which==2||e.which==3) {
return false;
}
}
} 
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS;
} 
else{
document.onmouseup=clickNS;
document.oncontextmenu=clickIE;
} 
document.oncontextmenu=new Function("return false") 
//-->end hide
