function openwindow(intPage,intValue)
{
	window.open("/popup.asp?page="+intPage+"&value="+intValue,"popup",'scrollbars=yes,menubar=no,height=300,width=580,resizable=yes,toolbar=no,location=no,status=no');	
}
function opendemo(strProduct)
{
	window.open("/demos/demo.asp?product="+strProduct,"popup",'scrollbars=yes,menubar=no,height=740,width=900,resizable=yes,toolbar=no,location=no,status=no');	
	window.location="index.asp?page=108&product="+strProduct
}
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
var anchors = document.getElementsByTagName("form");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;