// JavaScript Document
function newPopUp(strURL,strType,strHeight,strWidth,location) {
	// override
//	strHeight = 600;
//	strWidth = 600;
//	strType = "console";

	if(location == null)
		location = 'newWin';
	else if(location == 'helpWindows') {
		strHeight = 500;
		strWidth = 700;		
	}

	var strOptions="";
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	window.open(strURL, location, strOptions);
}