function popURL(url,name,features)
{
	if (features != null)
	{
		window.open(url,name,features);
	}
	else
	{
		window.open(url,name,"width=479,height=350,scrollbars,resizable");
	}
}	
