// BookMark
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}


 // Link to us popup.
var popUpL2U=0;
function linkToUs()
{
	var w = 394;
	var h = 275;
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;
	
	if(popUpL2U)

	{
		if(!popUpL2U.closed) popUpL2U.close();
	}
	
	var strsource = document.URL;
	strsource = strsource.replace(/\?/g,"[que]");
	strsource = strsource.replace(/\&/g,"[amp]");
	strsource = strsource.replace(/\%/g,"[prc]");
	strsource = strsource.replace(/\=/g,"[eql]");
	var strtitle = document.title;  
	strtitle = strtitle.replace(/\?/g,"[que]");
	strtitle = strtitle.replace(/\&/g,"[amp]");
	strtitle = strtitle.replace(/\%/g,"[prc]");
	strtitle = strtitle.replace(/\=/g,"[eql]");

	//alert(strsource);
	var yeah = "http://72.3.158.71/pv/linktous.php"
	yeah+='?source='+ strsource + '&title=' + strtitle;
	popUpL2U = open(yeah, 'popUpL2U', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width=' + w + ',height=' + h + ',left=' + winl + ',top=' + wint);
	
}
