
//popup window
<!--
function openUp(url,w,h){
	others = "menubar=no,scrollbars=no,status=no,resizable=no,directories=no,location=no,toolbar=no,top=0,left=0";
	features = "width=" + w + ",height=" + h;
	window.open(url,"",features);
}

function openPopup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//-->

