/*var popup="Sorry, Right-click has been disabled for this website.\n\nAll Rights Reserved. American University in Dubai"; function noway(go) { if 
(document.all) { if (event.button == 2) { alert(popup); return false; } } if (document.layers) 
{ if (go.which == 3) { alert(popup); return false; } } } if (document.layers) 
{ document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=noway; 
*/
//Common Functions - Abhilash Thekkottil
function openWin(win) {
	window.open(win);
}

function openWinfaculty(win) {
	var w = 700;
	var h = 450;
	var le = (screen.availWidth - w) /2;
	var he = (screen.availHeight -h) /2;
	window.open(win,null,"height="+h+",width="+w+",status=no,toolbar=no,scrollbars=yes,menubar=no,location=no,left="+le+", top="+he,false);
}

function opennewWin(win) {
	var w = 800;
	var h = 800;
	var le = (screen.availWidth - w) /2;
	var he = (screen.availHeight -h) /2;
	window.open(win,null,"height="+h+",width="+w+",status=no,toolbar=no,scrollbars=yes,menubar=no,location=no,left="+le+", top="+he,false);
	//window.open(win);
	//location.reload();
	//alert("You are now visiting a link outside AUD Website.\n AUD is not responsible for the content and images on this website.");	
}
function openWinVideo(win) {
	var w = 800;
	var h = 800;
	var le = (screen.availWidth - w) /2;
	var he = (screen.availHeight -h) /2;
	window.open(win,null,"height="+h+",width="+w+",status=no,toolbar=no,scrollbars=yes,menubar=no,location=no,left="+le+", top="+he,false);
	//window.open(win);
	//location.reload();
}
//Common Functions - Abhilash Thekkottil
