function mailpage()
{
  mail_str = escape(location.href);
  window.location="http://www.cisco-eagle.com/MailPageTest/mailto.asp?link="+mail_str
}
function mailpage2()
{
  mail_str = escape(location.href);
  mail_str2="http://www.cisco-eagle.com/MailPageTest/mailto2.asp?link="+mail_str
  winOpen(mail_str2,'',500, 400, false, false, false, false, false, false)
}
function winOpen(URL, windowName, width, height, resizable, location, menubar, scrollbars, status, toolbar){
	var windowFeatures;
	windowFeatures = '';
	if (width != '' && width != null){
		windowFeatures = windowFeatures+'width='+width+',';
	}
	if (height != '' && height != null){
		windowFeatures = windowFeatures+'height='+height+',';
	}
	if (resizable){
		windowFeatures = windowFeatures+'resizable,';
	}
	if (location){
		windowFeatures = windowFeatures+'location,';
	}
	if (menubar){
		windowFeatures = windowFeatures+'menubar,';
	}
	if (scrollbars){
		windowFeatures = windowFeatures+'scrollbars,';
	}
	if (status){
		windowFeatures = windowFeatures+'status,';
	}
	if (toolbar){
		windowFeatures = windowFeatures+'toolbar,';
	}
	window.open(URL, windowName, windowFeatures);
}