<!--
var remote = null;
function remoteWin(url,width,height){
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	remote = window.open('','TheWindow','width='+width+',height='+height+',resizeable=0,status=1,scrolling=1,scrollbars=1,top='+TopPosition+',left='+LeftPosition+'');
	if (remote != null){
		if(remote.opener == null){
			remote.opener = self
		}
		remote.location.href = url;
		remote.focus();
	}
}

function remoteWindow(url,width,height){
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	remote = window.open('','TheWindow2','width='+width+',height='+height+',resizeable=0,status=0,scrolling=1,scrollbars=1,top='+TopPosition+',left='+LeftPosition+'');
	if (remote != null){
		if(remote.opener == null){
			remote.opener = self
		}
		remote.location.href = url;
		remote.focus();
	}
}
function remoteWindowDoku(url,width,height){
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	remote = window.open('','TheWindow3','width='+width+',height='+height+',resizeable=0,top='+TopPosition+',left='+LeftPosition+'');
	if (remote != null){
		if(remote.opener == null){
			remote.opener = self
		}
		remote.location.href = url;
		remote.focus();
	}
}
-->