var remote = null;
function remoteWin(url,width,height){
	remote = window.open('','TheWindow','width='+width+',height='+height+',resizeable=0');
	if (remote != null){
		if(remote.opener == null){
			remote.opener = self
		}
		remote.location.href = url;
		remote.focus();
	}
}

function remoteWindow(url,width,height){
	remote = window.open('','TheWindow2','width='+width+',height='+height+',resizeable=0');
	if (remote != null){
		if(remote.opener == null){
			remote.opener = self
		}
		remote.location.href = url;
		remote.focus();
	}
}
