//open popup that contains site
function popUp(strURL,strType,strHeight,strWidth) {
	var strOptions="";
	var strHeight=screen.height;
	var strWidth=screen.width;
		
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar=no,menubar=no,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	
	if (strType=="normal") strOptions="toolbar,menubar,status,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;

	window.open(strURL, 'newWin', strOptions);
}
