
function openBrWindow(theURL,winName,features) 
{ 
  window.open(theURL,winName,features);
}

function mensaje(url)
{
	openBrWindow(url,'main','width=300,height=150');
}