// legacy.js - for backward compatibilty only
// Author: Alexander Aberer
// Date: 27.7.2000
// Last modified: 13.6.2001 (Andreas Ritter)
// Last modified: 2.7.2003 (Alexander Aberer)

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");
}

function open_nav(target,name,width,height,navtype,posx,posy,windowoptions,init_target) {
	width=220;
	
	switch(navtype) {
		case "service":
			height=482;
			break;
		case "news":
			height=390;
			break;
		case "funfriends":
			height=510
			break;
		case "marktplatz":
			height=200;
			break;
		default:
			height=350;
			break;
	}

	return open_window(target,name,width,height,posx,posy,windowoptions,init_target);
}

