<!--
//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;
}

function thumbPop(id, 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("http://www.symbolicmedialounge.com/dev/ml_thumbpop.html?t=" + id, 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=550,top=0,left=0");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}

// featured products
function thumbPopScroll(id) {
newWin=window.open("http://www.symbolicmedialounge.com/dev/ml_thumbpop.html?t=" + id,"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 thumbOU() {
newWin=window.open("http://www.symbolicinteractive.com/popup/form.html","rfp","resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width=830,height=620,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=845,height=675,top=0,left=0");
newWin.focus();
if (newWin.opener == null) newWin.opener = self;
}

// Subscriber popup
function Subscribe() {
newWin=window.open("http://www.symbolicinteractive.com/dev/popup/form.html?email=","window1","resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,copyhistory=0,width=845,height=620,scrollbars,top=0,left=0");
newWin.focus();
}

// 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;
}
// news windows
function News(urlB,width,height) {
newtWind=window.open(urlB,"twindow","resizable=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0,width="+width+",height="+height+",top=5,left=5");
newtWind.focus();
}

