function openPopUp(_location,_width,_height,_top,_left)
{
	if(isNaN(_top))
	_top = (window.screen.height - (_height + 50))/2;

	if(isNaN(_left))
	_left = (window.screen.width - _width)/2;
	
	var newWin;
	var args='width='+_width+',height='+_height+',left='+_left+',top='+_top+',toolbar=0,';
    args+='location=0,status=0,menubar=0,scrollbars=1,resizable=0'; 
	
	newWin = window.open(_location,"",args);
	return newWin;
}
