// Popup
function popUp (thisURL,width,height) { 
	if (document.getElementById) {
		width = parseInt(width);
		height = parseInt(height) + 20;
		newwin = window.open(thisURL.href, "popUp", "resizable,width="+width+",height="+height+"");
		newwin.focus();
		return false;
	} else { 
		return true; 
	} 
}
function LaunchWindow (thisURL,width,height) {
	width = parseInt(width) || 320;
	height = parseInt(height) || 327;
	OpenWin = window.open(thisURL, "LaunchWindow", "toolbar=no, menubar=no, location=no, scrollbars=no, resizable=no, width="+width+", height="+height+""); 
}