// Javascript file with ASP inserts var newWindow; function openNewWindow(winclass, loc) { if (typeof newWindow != 'undefined') { newWindow.close(); } switch (winclass) { case 'readme' : newWindow = window.open(loc, 'ReadMe'); break; case 'assist' : newWindow = window.open('/support/formhelp.htm#' + loc, 'Assistance', 'status=no,scrollbars=yes,resizable=yes,screenX=40,screenY=40,width=417,height=180'); break; case 'screenshot' : newWindow = window.open('/products/screenshots/' + loc, 'ScreenShot', 'status=no,scrollbars=yes,resizable=yes,screenX=40,screenY=40,width=640,height=535'); break; case 'newsalert' : newWindow = window.open('/' + loc, 'NewsAlert', 'status=no,scrollbars=yes,resizable=yes,screenX=40,screenY=40,width=500,height=250'); break; case 'popsurvey' : newWindow = window.open('/' + loc, 'popsurvey', 'status=no,scrollbars=yes,resizable=no,screenX=40,screenY=40,width=320,height=400'); break; } } function homepage() { } function onLoad(){ Menu_Load(); var hScreen = window.screen; var oId = new Image("image/x.asp?w=" + hScreen.width + ";h=" + hScreen.height + ";d=" + hScreen.pixelDepth); } var hLastBlurb = null; function showBlurb(iId) { var hBlurb = document.getElementById('blurb'+iId); if ( hBlurb ) { if ( !hLastBlurb ) { hLastBlurb = document.getElementById('blurb0'); } hLastBlurb.className = "TextBlurb_Hidden"; hBlurb.className = "TextBlurb"; hLastBlurb = hBlurb; } } function hideBlurb(iId) { var hBlurb = document.getElementById('blurb'+iId); if ( hBlurb ) { if ( hLastBlurb ) { hLastBlurb.className = "TextBlurb_Hidden"; } hBlurb.className = "TextBlurb_Hidden"; hLastBlurb = document.getElementById('blurb0'); hLastBlurb.className = "TextBlurb"; } } // setTimeout('Menu_Load();', 100);