// JavaScript Document

<!--
function Open_the_Window(url){
	window.open(url,"pop","width=1100,height=1000,status=yes,resizable=yes,scrollbars=yes");
}


function Close_The_Window(){
	window.close();
}

function Focus_the_Window(url){
   window.focus();
}

//-->
