function openURL(name,h,w){
	xpos = screen.width;
	ypos = screen.height;
              winName = name;
              var winAtts="";
              winAtts += "height=" + h + ",";
              winAtts += "width=" + w + ",";
              winAtts += "top=" + (ypos/2 - h/2 - 30) + ",";
              winAtts += "left=" + (xpos/2 - w/2) + ",";
              winAtts += "scrollbars=no, resizable=no";
              NewWindow=window.open(winName, "movie", winAtts);
}

function openCART(name,h,w){
	xpos = screen.width
	ypos = screen.height
              winName = name
              var winAtts=""
              winAtts += "menubar=yes,"
              winAtts += "height=" + h + ","
              winAtts += "width=" + w + ","
              winAtts += "top=" + (ypos/2 - h/2 - 30) + ","
              winAtts += "left=" + (xpos/2 - w/2) + ","
              winAtts += "scrollbars=yes, resizable=no"
              NewWindow=window.open(winName, "movie", winAtts)
}
