//Open a new pop-up window without toolbars.
function openWindow(url, name, width, height)
{
	if(width=='')
		width='800px';
	if(height=='')
		height='700px'
	window.open(url,name,'left=20,top=20,toolbar=1,resizable=0,toolbar=0,scrollbars=1' + ',width=' + width + ',height=' + height);
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}

