////////////////////////////////////////////////////////////////////
//    This file contains JavaScripts for home pages
////////////////////////////////////////////////////////////////////

function CDSample() {
	var url = "tr/enstitu/sadayienvar/sadayienvar.asp?track=1"
   var nmTop = window.screen.height/2 - 120;
   var nmLeft = window.screen.width/2 - 300;
	var remote = window.open(url, "CDSample", "width=600,height=240,toolbar=0,location=0,directories=0,resizable=0,status=0,menubar=0,scrollbars=0,left=" + nmLeft + ",Top=" + nmTop );
}

function FairLocation() {
	var url = "tr/home/fair/location.asp"
   var nmHeight = 250;
   var nmWidth = 600;
   var nmTop = window.screen.height/2 - nmHeight / 2;
   var nmLeft = window.screen.width/2 - nmWidth / 2;
	var remote = window.open(url, "FairLocation", "width=" + nmWidth + ",height=" + nmHeight + ",toolbar=0,location=0,directories=0,resizable=0,status=0,menubar=0,scrollbars=0,left=" + nmLeft + ",Top=" + nmTop );
}

function PopWindow( name, url, width, height) {
   var top = window.screen.height/2 - height / 2;
   var left = window.screen.width/2 - width / 2;
	var remote = window.open(url, name, "width=" + width + ",height=" + height + ",toolbar=0,location=0,directories=0,resizable=0,status=0,menubar=0,scrollbars=0,left=" + left + ",Top=" + top );
}

function GoLastReadPage(){
	//alert(document.LastReadPage.drpLastRead[document.LastReadPage.drpLastRead.selectedIndex].value);
	document.location = "index.asp?Section=Kulliyat&" + document.LastReadPage.drpLastRead[document.LastReadPage.drpLastRead.selectedIndex].value
}

