function loc()
{
	location = window.location.href;
	window.open('/cms/utils/print.asp?loc='+location,'','scrollbars=yes,menubar=yes,toolbar=yes');
}
function openup()
{	
	window.open('/send/send_new/default.asp?url='+window.location.href,'','width=450 height=450 left=250');
}
function feedopen()
{
	if (document.frmfeedback.txtsendername.value == '')
	{
		alert('Enter your name');
		document.frmfeedback.txtsendername.focus();
		return;
	}
	if (document.frmfeedback.txtsenderemail.value == '')
	{
		alert('Enter your email address');
		document.frmfeedback.txtsenderemail.focus();
		return;
	}
	if (document.frmfeedback.txtfeedbacktext.value == '')
	{
		alert('Enter feedback about this article');
		document.frmfeedback.txtfeedbacktext.focus();
		return;
	}
	document.frmfeedback.target = "new window";
	document.frmfeedback.submit();
}