<!--


/* 
	Function launchWS spawns a pop-up window
	p = page URL
	n = page name
	w = width
	h = height
	s = scroll (yes,no,auto)
*/
function launchWin(p,n) {
	w = "500";
	h = "500";
	doLaunch = window.open(p,n,"scrollbars=yes,resizable=no,width="+w+",height="+h+",status=no,location=no,toolbar=no,menubar=no");
	doLaunch.focus;
}

function launchDisplay(p,n,w,h,s) {
	if (s == "yes") {
		s = "yes";
		r = "yes"
	} else {	
		s = "no";
		r = "no"; 
	}
	doLaunch = window.open(p,n,"scrollbars,resizable="+r+",width="+w+",height="+h+",status=no,location=no,toolbar=no,menubar=no");
	doLaunch.focus;
}



//="+s+"
//-->
