// JavaScript Document


function MM_openBrWindow(theURL,winName,width,height) {

	var features='resizable,top=0,left=200';	
	var _popup = document.getElementById('popup');	
	var _win = window.open(theURL,winName,"height="+height+",width="+width+","+features);
	
	_win.moveTo((screen.availHeight/2)-(height/2),(screen.availWidth/2)-(width/2));
	
}