

var monitor = null;

function openwindow(URL){

		
        monitor = window.open('','Monitor','screenX=100,screenY=100,width=490,height=610,toolbar=no,scrollbars=no,resizable=no,statusbar=yes');
        
     
        if (monitor != null) 
        {
                if (monitor.opener == null) 
                {
                        self.location="/tourplan/tour.html";
                        monitor.opener =this;
                }

                monitor.location.href = URL;
                window.monitor.focus();               
                }
}


function closewindow(){
	alert ("schliessen2");
	self.close();


}


var neu = null;

function newwindow(URL){
	
	neu = window.open('','Neu');
	if (neu != null) 
        {
                if (neu.opener == null) 
                {
                        
                        neu.opener =this;
                }

                neu.location.href = URL;
                window.neu.focus();               
                }

}