/****************************************************************
	Medicine Javascript file (Created by CITA Medicine)
	
	Enquiries:
		lionghong@nus.edu.sg
*****************************************************************/

if (document.all)    {n=0;ie=1;}
if (document.layers) {n=1;ie=0;}
var html = "";


// Generic onMouseOut window status text
function mseOut() {
	window.status='The Faculty of Medicine.'; return true;
}


// Generic onClick new window
function shortc(theURL,winName,features) {
	if (theURL != "")
		window.open(theURL,winName,features);
}


// onMouseOver menu item style
function mseOverStyle(item) {
	item.style.backgroundColor='FFEAD5';
	item.style.cursor='hand';
}


// onMouseOut menu item style
function mseOutStyle(item) {
	item.style.backgroundColor='FFFDFD';
	mseOut();
}


function openFile(file) {
	var fileName=file
	
	if (document.all)
		if (file=='/credits.htm') filewindow=window.open(fileName,"","width=420,height=200")
		else filewindow=window.open(fileName,"","width=420,height=330")
	else
		if (file=='/credits.htm') filewindow=window.open(fileName,"","width=420,height=200,scrollbars")
		else filewindow=window.open(fileName,"","width=420,height=330,scrollbars")
}

/*
//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
*/