//<!--
function set_birth_form(birthdate_day,birthdate_month,birthdate_year,mod,sex,title)
{	
	document.writeln('<form action=\"index.php?mod='+mod+'\" METHOD=\"post\" class=\"ForForm\" style=\"margin:0px;\">');
	document.writeln('<div style=\"height:23px;\" align=\"center\">');
	document.writeln('<br>');
	set_dateselect(birthdate_day,birthdate_month,birthdate_year,'birthdate');
	document.writeln('<br>');
	if (sex==1)	
	{
		document.writeln('<input type=\"radio\" name=\"sex\" value=\"0\"  id=\"wom\"><label for=wom>Æåíùèíà</label>');
		document.writeln('<input type=\"radio\" name=\"sex\" value=\"1\" checked  id=\"man\"><label for=man>Ìóæ÷èíà</label>');
	}		
	else
	{
		document.writeln('<input type=\"radio\" name=\"sex\" value=\"0\" checked id=\"wom\"><label for=wom>Æåíùèíà</label>');
		document.writeln('<input type=\"radio\" name=\"sex\" value=\"1\"  id=\"man\"><label for=man>Ìóæ÷èíà</label>');
	}
	document.writeln('<input type=\"submit\" style=\"width:100%\" value=\"'+title+'\">');
	document.writeln('</div>');
	document.writeln('</form>');
}
//-->