
function openWin(url,width,height){
	state="width="+ width + ",height="+ height +",scrollbars=yes";
	window.open(url,"newwindow",state);
}

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