function pop( name,url,width,height,params,returnVal ) {
	args="width="+width+",height="+height+","+params; 

	remote=window.open( url,name,args );
	
	
	

	if ( remote != null ) {
		if ( remote.opener == null )
			remote.opener = self;
	}

	remote.focus();

	if (returnVal == 1)
		return remote;
}



function openClose(url){

 window.open(url,"","width=700,height=600,top=25,left=25,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes");
 window.close();

}