function popUp(strURL,strType,strHeight,strWidth) {
	var strOptions="";
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="status,scrollbars,resizable,height="+window.screen.height+",width="+strWidth;
	window.open(strURL, 'newWin', strOptions);
}