/////
function pop_warningpage(url)
/* This function pops up the bumper page with the url of the advertiser */
	{
		var page_url ;
		page_url = "http://www.girlsense.com/premium/hp/clip/warning.htm?url=" + url;
		new_window = window.open(page_url, 'bumper','menubar=yes, toolbar=yes, statusbar=yes, scrollbars=yes,resizable=yes');
		//alert(page_url);
	}
function getUrl()
	{
	var SelfUrl;
	SelfUrl = self.location.search;
	var X = new Array();
	X = SelfUrl.split("url=", 2);	
	return X[1];
	}



function go2advertiser() 
	{
	url = getUrl();
	self.location = url;
	}