function LinkSelect(form, sel) {
		c = sel.selectedIndex;
		adrs = sel.options[c].value;
		if (adrs != "-" )
		{
			if (adrs.indexOf("http://") >= 0 ) 
			{
				window.open(adrs)
			}
			else 
			{
				parent.location.href = adrs;
			}
		}
}

function fncWin(linkToSend) {
	var sendLinkPage='custom_asp/sendlink.asp'
	var strPageLink=parent.location.href

	sendLinkWin=window.open(sendLinkPage+'?sendLink='+linkToSend,'sendLinkWin','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=380,height=300')
	sendLinkWin.focus()
}
