<!--
//Print Window - close window script
function printWindow(){
   browserVer = parseInt(navigator.appVersion)
   if (browserVer >= 4) window.print()
}
// featured products
function featProd(url) {
newWin=window.open(url,"form_window2","resizable=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=690,height=547,top=0,left=0");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}
// product thumbnails

function thumbNails(url, height, width, name, parms) {
   var left = Math.floor( (screen.width - width) / 2);
   var top = Math.floor( (screen.height - height) / 2);
   var winParms = "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width;
   if (parms) { winParms += "," + parms; }
   var win = window.open(url, name, winParms);
   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
   return win;
}

// featured products
function thumbNailsScroll(url) {
newWin=window.open(url,"form_window3","resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=708,height=650,top=0,left=0");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}

// Request For Proposal
function thumbRFP(url) {
newWin=window.open(url,"rfp","resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=530,height=650,top=0,left=0");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}

// Subscriber popup
function Subscribe() {
newWin=window.open("http://www.symbolicproductions.com/popup/form.html?email=","window1","resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=482,height=700,scrollbars,top=0,left=0");
newWin.focus();
}

// Fact Sheets
function News(url) {
newWin=window.open(url,"ne","resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=667,height=390,top=0,left=0");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}

// Fact Sheets
function FactSheet(url) {
newWin=window.open(url,"fs","resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=617,height=700,top=0,left=0");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}

//open a new window
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//-->