// JavaScript Document
function openWindow(theURL){
	window.open(theURL,'newCalc','width=565,height=450,left=0,top=0,menubar=Yes,toolbar=No,location=No,scrollbars=Yes,status=No,resizable=Yes,fullscreen=No');
}
function close_window() {
    window.close();
}