function popUp(which,coursename,specs,storeId) { 
  var features = specs;
  if (features == "") {
    features = "scrollbars=auto,width=475,height=500";
  }
  
  var theURL = "/red/pub/newmkt/pop_" + which + "_" + coursename;
  if((storeId != null) && (storeId != "")) {
    theURL = theURL + "_index.jhtml?storeId=" + storeId;
  }
  else {
    theURL = theURL + "_index.html";
  }
  var winName = "RED_POPUP_" + which + "pop";
  var main = "pop_" + which + "_" + coursename + ".html";
  window.open(theURL,winName,features);
}

function rollover(name,state) {
	var imagename = "img"+name;
	if (state=='over') {
		state = "_" + state;
	}
	if (document.images) {
		document.images[imagename].src = "images/courselist_" + name + state + ".gif";
	}
}
