// legacy.js - for backward compatibilty only
// Author: Alexander Aberer
// Date: 27.7.2000
// Last modified: 27.7.2000


        
	// [This funtion added for mediaán webaudit]
        function rand(n) {return (Math.floor(Math.random()*n));}
        var same = rand(10000000)  
        // [Median] End hide 
        
	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);
	}

