<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_openBrWindow2(theURL,winName,features) {
	var screenWidth = screen.width;
	var features2 = '';
	if(screenWidth==800){
		features2 = features+',width=780,height=550';
	}
	else if(screenWidth==1024){
		features2 = features+',width=1000,height=650';
	}
	else if(screenWidth==1152){
		features2 = features+',width=1100,height=750';
	}
	else if(screenWidth>1152){
		features2 = features+',width=1200,height=900';
	}
	else{
		features2 = features+',width=1000,height=650';
	}
	window.open(theURL,winName,features2);
}

function MM_openBrWindow3(theURL,winName,boxWidth,boxHeight,features)
{
	var screenWidth = (screen.width);
	var screenHeight = (screen.height);
	
	var boxLeft = (screenWidth/2) - (boxWidth/2);
	var boxTop = (screenHeight/2) - (boxHeight/2);

	var strOptions = features + ",top=" + boxTop + ",left=" + boxLeft + ",width=" + boxWidth + ",height=" + boxHeight + "";
	
	window.open(theURL,winName,strOptions);
}
//-->