// JavaScript Document
function openwindow()
{
win=window.open('http://www.bauernhofurlaub.de/Belegungskalender.584.0.html?&no_cache=1&tx_dpbauernhof_pi1[belID]=679','Belegungsplan','toolbar=0,location=0.html,directories=0,scrollbars=yes,status=0,width=520,height=600,resizeable=no');
}

function popup (Name, w, h)
{
Ref = Name+'_fr.htm';
win = window.open(Ref, Name,'width='+w+',height='+h+',location=no,menubar=no,resizable=no,toolbar=no,status=no');
}

function gross(){
scrW = 800;				
scrH = 600;				
window.outerWidth = 800;			
window.outerHeight = 600;			
resizeTo(scrW, scrH);			
moveTo(0,0)						
}	

function klein(){
scrW = 640;				//gesammte Breite
scrH = 480;				//gesammte höhe 
window.outerWidth = 640;			
window.outerHeight = 480;			
resizeTo(scrW, scrH);			//Abfrage auf höhe und breite
moveTo(0,0)				//0,0 gleich Position des Fensters		
}

