
function launch(newURL, newName, newFeatures, orgName) {
var remote = open(newURL, newName, newFeatures);
return remote;
}
function comminfoopen(fileURL)
{
launch(fileURL, Math.round(Math.random()*100000), "menubar=1,location=0,height=650,WIDTH=650,resizable=1,scrollbars=1,status=1,toolbar=1,location=1", "Community Info");
}
function myaccountopen()
{
launch("fileURL", Math.round(Math.random()*100000), "menubar=0,location=0,height=600,WIDTH=550,resizable=0,scrollbars=1,status=0,toolbar=0,location=0", "My Account");
}
function myignorelistopen()
{
launch("fileURL", Math.round(Math.random()*100000), "menubar=0,location=0,height=400,WIDTH=500,resizable=0,scrollbars=1,status=0,toolbar=0,location=0", "My Account");
}
function popupwindowtalleropen(fileURL, windowName)
{
launch(fileURL, Math.round(Math.random()*100000), "menubar=0,location=0,height=550,width=500,resizable=0,scrollbars=1,status=0,toolbar=0,location=0", windowName);
}
function popupwindowopen(fileURL, windowName)
{
launch(fileURL, Math.round(Math.random()*100000), "menubar=0,location=0,height=400,WIDTH=500,resizable=0,scrollbars=1,status=0,toolbar=0,location=0", windowName);
}
function largepopupwindowopen(fileURL)
{
launch(fileURL, Math.round(Math.random()*100000), "menubar=0,location=0,height=400,WIDTH=700,resizable=1,scrollbars=1,status=0,toolbar=1,location=0");
}
function newscategorywindowopen(fileURL)
{
launch(fileURL, "newspreview", "menubar=0,location=0,height=470,WIDTH=700,resizable=1,scrollbars=1,status=0,toolbar=1,location=0");
}
function newsheadlinewindowopen(fileURL)
{
var modString = fileURL;
if (navigator.appName == "Microsoft Internet Explorer")
{
var nIndex = 0;
while (nIndex != -1)
{
nIndex = modString.indexOf("%", nIndex+1);
if (nIndex == -1)
{
break;
}
modString = modString.substring(0, nIndex) + "%2525" + modString.substring(nIndex+1, modString.length);
}
}
launch(modString, "newspreview", "menubar=0,location=1,height=450,WIDTH=750,resizable=1,scrollbars=1,status=0,toolbar=1");
}
function UserProfileOpen(userName)
{
launch("http://www.coolboard.com/userprofiledisplay.cfm?username=" + userName, Math.round(Math.random()*100000), "menubar=0,location=0,height=600,width=600,resizeable=0,scrollbars=1,status=0,toolbar=0", "My User Profile");
}
function getAppVersion() {
appname= navigator.appName;
appversion = navigator.appVersion;
majorver = appversion.substring(0, 1); if ( (appname == "Netscape") && ( majorver >= 3 ) ) return 1;
if ( (appname == "Microsoft Internet Explorer") && (majorver >= 4) ) return 1;
return 0;
}
function preload(imgObj,imgSrc) {
if (document.images) {
eval(imgObj+' = new Image()');
eval(imgObj+'.src = "'+imgSrc+'"');
}
}
function highlight(id) {
eval(id + ".bgColor = 'ffcc00'");
}
function unhighlight(id) {
eval(id + ".bgColor = 'ccccff'");
}
// -->

<!-- // hide script from old browsers
function goThere() {
  var list = document.menumaster.navchoices;
  if(list.options[list.selectedIndex].value != "")
{
    parent.document.location = list.options[list.selectedIndex].value;
  }
}



