	function sec_openBrWindow(theURL,winName,features) { //v2.0
	
		window.open(theURL,winName,features);
	
	}
	
	function move_it (toURL,dir) {

		dir = '';	
		sec_openBrWindow('/offsite_redirect/offsite_popup.html',
						'going_offsite',
						'width=260,height=120,scrollbars=no,top=' + ((screen.height/2)-60) + ',left=' + ((screen.width/2)-130) + '' );
	
		var funct_string = 'open_outsite(\'' + toURL + '\')';
			
		window.setTimeout(funct_string,10000);
		
	}
	
		function move_it2 (toURL,dir) {

		dir = '';	
		sec_openBrWindow('/offsite_redirect/offsite_popup.html',
						'going_offsite',
						'width=260,height=120,scrollbars=no,top=' + ((screen.height/2)-60) + ',left=' + ((screen.width/2)-130) + '' );
	
		var funct_string = 'open_outsite2(\'' + toURL + '\')';
			
		window.setTimeout(funct_string,10000);
		
	}
	
	function open_outsite (thisURL) {
	
		sec_openBrWindow(thisURL,
						'offsite_window','');

/*
						'offsite_window',
						'width='+ (screen.width - 50) +',height='+ (screen.height - 50) +',top=0,left=0,scrollbars=yes' );
*/
	
	}
	
		function open_outsite2 (thisURL) {
	
		sec_openBrWindow(thisURL,
						'offsite_window',
						'width='+ (screen.width - 50) +',height='+ (screen.height - 50) +',top=25,left=25,toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes' );
	
	}
	

