var exit=true;
var temp_url = document.location.href;
var url_pieces = new Array();
url_pieces = temp_url.split("/");

if(undefined==window.wm_id){
	window.wm_id = 0;
}
if (window.wm_id<1){
   window.wm_id = url_pieces[3];
}

if (window.wm_id<1){
   temp_url = document.referrer;
   url_pieces = new Array();
   url_pieces = temp_url.split("/");	
   window.wm_id = url_pieces[3];
}

//document.write(window.wm_id);


var goto_url = 'http://www.realteennetwork.com/redir.php?id=' + window.wm_id;
//document.write( goto_url);

window.onbeforeunload = function () {   
if(exit==true){	
 	location.replace(goto_url);   
 	return "   Special Offer: 3 sites for the price of one!";
}
}
