// JavaScript Document
//window closer for popup
function remote2(url){
	//alert (window.opener.location=url);
	window.opener.focus();
	window.opener.location=url;
	window.blur();
	}
