// JavaScript Document

function Jump(newLoc){
	window.location.href=newLoc;
}

function openUpdate(URL) {
	aWindow=window.open(URL,"thewindow","width=500,height=275,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no,copyhistory=no,left=100,top=200");
}

function openUpdate1(URL, Width, Height) {
	var Features = "width=" + Width + ",height=" + Height + ",toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no,copyhistory=no,left=100,top=200";
	//alert(Features);
	Window=window.open(URL,"_blank",Features);
	setTimeout(window.close, 1000);
}

function CloseWin() {
	window.close(); 
}
