
function openWindow(theURL, theName, width, height) {
        window.open(theURL , ""+theName+"" ,"width=" + width + ",height="+ height + ",toolbar=no,directories=0,menubar=no,status=no,resizable=1,location=0,scrollbars=1,copyhistory=0,alwaysRaised=yes");
}
function closeWindow() {
	window.top.close();
	window.close();
}