// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 6;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Minor version of Flash required
var requiredRevision = 0;
// -----------------------------------------------------------------------------

function popUp(strURL,strType,strHeight,strWidth,strTop,strLeft) {
		var strOptions="";
		if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth+",top="+strTop+",left="+strLeft;
		if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth+",top="+strTop+",left="+strLeft;
		if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth+",top="+strTop+",left="+strLeft;
		window.open(strURL, 'newWin', strOptions);
} // end function
