function OpenWin(wUrl,wWidth,wHeight){
	scWidthCenter=screen.availWidth/2;
	scHeightCenter=screen.availHeight/2;
	wOption = "status=0,scrollbars=0,resizable=1,location=0,width="+wWidth+",height="+wHeight+",left="+(scWidthCenter-(wWidth/2))+",top="+(scHeightCenter-(wHeight/2));
	window.open(wUrl,'window1',wOption);
}


function CloseWin(){
    window.close();
}
