function remotePop() {

	// fixing to avoid conflicts with other services
	// using the id tag
	
	if ( typeof srl33t_id != "undefined" ) {
	
		this_id = srl33t_id;

	}
	else {
	
		this_id = id;
	
	}

	//URL of Script
	var display="http://www.SubscriptionRocket.com/perl-bin/echo?CID=" + this_id;

	//Prevent Multiple Popups
	var expiration = 3600;

	//Cookie to set
	var pop_cookie = "CID=" + this_id;
	
	//Centering Stuff
   	if (document.all) {
        	var xMax = screen.width, yMax = screen.height;
   	}
   	else 
   	if (document.layers) {
            var xMax = window.outerWidth, yMax = window.outerHeight;
        }
        else {
            var xMax = 640, yMax=480;
	}
    	var xOffset = (xMax - 520)*0.5, yOffset = (yMax - 430)*0.1;
	

	if (document.cookie.search(new RegExp(pop_cookie)) == -1) {
		var cDate = new Date();
		cDate.setSeconds(cDate.getSeconds()+expiration);
		document.cookie = pop_cookie + "; expires="+cDate.toGMTString();

		var win2=window.open(display,'PUW','left=1,right=1,top=0,width=520,height=430,toolbar=no,menubar=no,scrollbars=no,status=no,resizable=no,location=no,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
		win2.blur();window.focus();
	}
}

window.onload=remotePop;

