<!--
var remote = null;
function remoteWin(url,width,height){
	remote = window.open('','TheWindow','width='+width+',height='+height+',resizeable=0,status=1');
	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();
	}
}
function remoteWindowDoku(url,width,height){
	remote = window.open('','TheWindow3','width='+width+',height='+height+',resizeable=0');
	if (remote != null){
		if(remote.opener == null){
			remote.opener = self
		}
		remote.location.href = url;
		remote.focus();
	}
}

function popup(url,width,height){
	remote = window.open('','PopUp','width='+width+',height='+height+',resizeable=0,status=0,scrollbars=1');
	if (remote != null){
		if(remote.opener == null){
			remote.opener = self
		}
		remote.location.href = url;
		remote.focus();
	}
}

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