// JavaScript Document
function openwindow(path,name) {
	windowx = window.open(path,name,'height=300,width=500,left=400,top=400');
	return windowx;
}

function closepopup()
{
 if(false == windowx.closed)
 {
    windowx.close ();
 }
}