// JavaScript Document

function openBrWindow(theURL,winName) {
	var w = 640, h = 480, cw = 0, ch = 0;
	
	window.open(theURL, 'popup','width='+w+', height='+h+', top='+ch+',left='+cw+', scrollbars=1');
}

function openBrWindow2(theURL,winName, w, h, ch, cw){
	window.open(theURL, 'popup','width='+w+', height='+h+', top='+ch+',left='+cw+', scrollbars=1');	
}