function printWindow(){
   version = parseInt(navigator.appVersion)
   if (version >= 4) window.print()
}

function addBookmark(){
	if ((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4)) {
		document.write('<A href="#here" onclick="window.external.AddFavorite(location.href,document.title);"><IMG alt="Add to favorites" BORDER="0" SRC="images/addtofav.gif" WIDTH="100" HEIGHT="23"></A>');
	}

}

function pop(url)
{
 window.open(url,'profile','width=300,height=350,scrollbars,resizable');
}