function more_info(url,popName,Width,Height)
{
    popURL = url;
    pop_up(popURL,popName,Width,Height);
}

function checkEmail(emailValue) 
{
	var check = false;
	
	/*
	var str = emailValue;
	var at="@";
	var dot=".";
	var lat=str.indexOf(at);
	var lstr=str.length;
	var ldot=str.indexOf(dot);
	
	if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr)
	{
	  check = false;
	}
	else if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr)
	{
	  check = false;
	}
	else if (str.indexOf(at,(lat+1))!=-1)
	{
		check = false;
 	}
	else if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot)
	{
		check = false;
	}
	else if (str.indexOf(dot,(lat+2))==-1)
	{
		check = false;
	}
	else if (str.indexOf(" ")!=-1)
	{
		check = false;
	}
	*/
	
	if(emailValue != null && typeof emailValue == 'string' && emailValue.length > 0 && emailValue.match(/[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}/i)){
		check = true;
	}
	
	return check;					
}