function popUp(sURL, h, w, t, l) {
	
	sbar = "yes";  //scrollbar (yes or no) 
	sWindowName = "myWindow"

	sOptions = "height=" + h + ",width=" + w + ",toolbar=no,status=yes,scrollbars=" + sbar + ",resizable=yes,top=" + t + ",left=" + l;
	window.open(sURL, sWindowName, sOptions);
   
}

function popUp2(theURL, ID) {
	h = 450;
	w = 800;
	theURL = theURL + "?ID=" + ID
	
	strOptions = "height=" + h + ",width=" + w + ",toolbar=no,status=no,scrollbars=no,resizable=yes,top=0,left=0";
   	window.open(theURL, "window", strOptions );
}							
