// JavaScript Document
function windowOpen(URL){
	URL = window.open(URL, 'pop', 'width=820, height=650, menubar=no, toolbar=no, scrollbars=yes,resizable=yes'); 
	URL.focus();
}


function windpwOpener(url){
	if(!window.opener || window.opener.closed){
		location.href=url;
	}
	else{
		window.opener.location.href = url;
	}
}
