var win2;
function apri(url) {
	win2 = window.open(url, '', 'width=' + (screen.width-5) + ',height=' + (screen.height-30) + ', scrollbars=auto, resizable=yes, ').focus();
}
function CloseTheWindow() {
	if (win2) win2.close();
}
	

