
function popup(theURL,winName) {
	var winWidth  = screen.width;
	var winHeight = screen.height;
	var winl = 0;
	var wint = 0;
	winName = window.open(theURL,winName,'width='+winWidth+',height='+winHeight+',top='+wint+',left='+winl+',toolbar=no,status=no,location=no,menubar=no,scrollbars=no,resizable=no');
	winName.focus();
}

function closepopup(){
	window.close('main');
}


function closepopup(){
	window.close('main');
}

