// author : Venkatramana Vishwanatham // This script is used to pop up windows. //pageTypes - Product Hero, USG From Every Angle, Green Practices, What is Gypsum function popUp(page) { day = new Date(); id = day.getTime(); if(page=="Product Hero") eval("page" + id + " = window.open('/products/USG_360.jsp', '" + id + "', ',scrollbars=1,resizable=1,width=439,height=289,left = 30,top =0');"); else if(page=="USG From Every Angle") eval("page" + id + " = window.open('/products/USG_360.jsp', '" + id + "', ',scrollbars=1,resizable=1,width=770,height=490,left = 30,top =0');"); else if(page=="Green Practices") eval("page" + id + " = window.open('/about/green_practices.jsp', '" + id + "', ',scrollbars=1,resizable=1,width=680,height=480,left = 30,top =0');"); else if(page=="What is Gypsum") eval("page" + id + " = window.open('/about/what_is_gypsum.jsp', '" + id + "', ',scrollbars=1,resizable=1,width=770,height=250,left = 30,top =300');"); else if(page=="Mold and Moisture") eval("page" + id + " = window.open('/about/mold_and_moisture.jsp', '" + id + "', ',scrollbars=1,resizable=1,width=700,height=500,left=30,top =50');"); else if(page=="Nascar Photo Gallery") eval("page" + id + " = window.open('/news/usgracing/nascarGallery.jsp', '" + id + "', ',scrollbars=1,resizable=1,width=560,height=640,left=30,top =50');"); else if(page=="LaunchPromoRules") eval("page" + id + " = window.open('/promos/Launch/rules.html', '" + id + "', ',scrollbars=1,resizable=1,width=637,height=640,left=30,top =50');"); else if(page=="AIA2005"){ eval("page" + id + " = window.open('/promos/AIA2005_rules.html', '" + id + "', ',scrollbars=1,resizable=1,width=637,height=640,left=30,top =50');"); } else //else: treat page as a path eval("page" + id + " = window.open('"+page+"', '" + id + "', ',scrollbars=1,resizable=1,width=637,height=640,left=30,top =50');"); } function specGenPopUp(page) { day = new Date(); id = day.getTime(); //else: treat page as a path eval("page" + id + " = window.open('"+page+"', '" + id + "', ',scrollbars=1,resizable=1,toolbar=1,width=920,height=570,left=30,top =50');"); } function pdf_popUp(URL,strTitle) { newUrl = "/navigate.do?document="+URL+"&docTitle="+strTitle; handle=window.open(newUrl); //handle.flush(); handle.focus(); //return handle; } function image_popUp(imagePath, width, height){ day = new Date(); id = day.getTime(); eval("imagePath" + id + " = window.open('"+imagePath+"', '" + id + "', 'scrollbars=0,resizable=0,width="+width+",height="+height+",top =0');"); } var newwindow; function openpdf(url) { handle=window.open(url); handle.focus(); } //Added by SB, function was originally in Web Root/graphics/templates/products.jsp function popup (url, params) { window.open(url, 'windowName', params); }