// This is the standard Macromedia workaround for the Netscape resize bug. Works nicely, so why change it?// Reloads the window if Nav4 resized.function MM_reloadPage(init) {    if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);//Rollover Function - Mouse Over.function imgOn(imgName) {						  if (document.images) {    document[imgName].src = eval(imgName + "on.src");}}//Rollover Function - Mouse Out.function imgOff(imgName) {						  if (document.images) {    document[imgName].src = eval(imgName + "off.src");}}//Function to open a new window. function goMore(URL,features) {  window.open(URL,'MediaWorks',features);}


function newExtraPopup(pID) {
myWindow = window.open ('extra_popup.asp?lProductID=' + pID, 'myWindow', 'width=200, height=325, toolbar=no, location=no, scrollbar=no, left=100, top=100');
}



