// legacy.js - for backward compatibilty only
// Author: Alexander Aberer
// Date: 27.7.2000
// Last modified: 13.6.2001 (Andreas Ritter)

	function open_window_sms(init_target,target,name,width,height,scrolling) {
		var result;
		result = open_window(target,name,width,height,0,0,"location=no,toolbar=no,status=no,statusbar=no,scrollbars=" + scrolling + ",resizable=yes,dependent=yes",init_target);
		return result;
	}
	
	function open_mailerle(target,name,width,height) { 
		var result;
		result = open_window(target,name,width,height,0,0,"location=no,toolbar=no,status=yes,statusbar=yes,scrollbars=yes,resizable=yes,dependent=yes");
		return result;
	}
	
	function open_down_window(target,name,width,height,posx,posy) { 
		var dummy;
		dummy = open_window(target,name,width,height,posx,posy);
	}
	
	function open_help_window(target,name,width,height, posx, posy) { 
		var dummy;
		dummy = open_window(target,name,width,height, posx, posy);
	}
	
	function open_window_astitle(target,name,width,height) { 
		var dummy;
		dummy = open_window(target,name,width,height);
	}

	function open_window_test(target,name,width,height) { 
		var result;
		result = open_window(target,name,width,height,0,0,"location=no,toolbar=no,status=no,statusbar=no,scrollbars=yes,resizable=no,dependent=yes");
		return result;
	}

	function MM_openBrWindow(theURL,winName,features) {
		window.open(theURL,winName,features);
	}
	
	function openwindows_ie5()
	{
	window.open("http://www.vol.at/feat/texte/support/homepage/gewinnspiel_ie5.html", "popup", "channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=450 width=450,top=5,left=5");
	}
	
	function openwindows_ie4()
	{
	window.open("http://www.vol.at/feat/texte/support/homepage/gewinnspiel_ie4.html", "popup1", "channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=450 width=780,top=45,left=45");
	window.open("http://www.vol.at/feat/texte/support/homepage/ie4_anleitung.shtm", "popup2", "channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=450 width=780,top=5,left=5");
	}

	function openwindows_ns()
	{
	window.open("http://www.vol.at/feat/texte/support/homepage/gewinnspiel_ns4.html", "popup1", "channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=450 width=780,top=45,left=45");
	window.open("http://www.vol.at/feat/texte/support/homepage/nn4_anleitung.shtm", "popup2", "channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=450 width=780,top=5,left=5");
	}

