function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
};

function MM_displayStatusMsg(msgStr) { //v1.0
	status=msgStr;
	document.MM_returnValue = true;
};

function openWin(url, w, h) { 
	var winprop = "width=" + w + ",height=" + h; 
	openwin = window.open(url,'',winprop);
};

// INCLUDE GLOBAL LIBRARIES
var libs = ['/business/projectors/js/prototype_1_6_0.js','/business/projectors/js/prototype_extensions.js','/business/projectors/js/coremetrics.js','/business/projectors/js/coremetrics_data.asp?location=' + unescape(window.location.pathname.toLowerCase())];

for(var i=0;i<libs.length;i++){
	document.write('<script src="'+libs[i]+'" type="text/javascript"></script>');
}

/****************************************************
 Author: Eric King
 Url: http://redrival.com/eak/index.shtml
 This script is free to use as long as this info is left in
 Featured on Dynamic Drive script library (http://www.dynamicdrive.com/dynamicindex8/popwin.htm)
 
 Link example: <a href="../7th_gen/Feat_ARFCleaner.asp" onclick="NewWindow(this.href,'window name','width','height','no','center');return false" onfocus="this.blur()" target="_blank">
 
****************************************************/
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}
