function openPopup(url,name,param)
{
	var newWindow = window.open(url,name,param);
	if(newWindow)
	{
		newWindow.focus();
	}
}
