// JavaScript Document

function newWindow(url,name,width,height,scroll,pos)
{
	if (pos == 'topleft')
	{
		LeftPosition=0;
		TopPosition=0;
	}
	else if (pos =='center')
	{	
		LeftPosition=(screen.width)?(screen.width-width)/2:100;
		TopPosition=(screen.height)?(screen.height-height)/2:100;
	}	
	settings='width='+width+',height='+height+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	
	win=window.open(url,name,settings);
	return false;
}
