	function sec_openBrWindow(theURL,winName,features) { //v2.0			window.open(theURL,winName,features);		}		function move_it (toURL) {			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 open_outsite (thisURL) {			sec_openBrWindow(thisURL,						'offsite_window',						'width='+ (screen.width - 50) +',height='+ (screen.height - 50) +',top=0,left=0,scrollbars=yes' );		}	