function contact(action)
	{
			xmlhttp=GetXmlHttpObject()
			if (xmlhttp==null)
			{
				alert ("Your browser does not support XMLHTTP! get firefox!");
				return;
			}

		xmlhttp.onreadystatechange=function()
			{
				if(xmlhttp.readyState==4)
				{
					document.getElementById('contact_button').innerHTML=xmlhttp.responseText;
				}
			}	

		if(action == 'show')
		{
			xmlhttp.open("GET","scripts/php/contactShow.php",true);
			xmlhttp.send(null);
		}else{
			xmlhttp.open("GET","scripts/php/contactHide.php",true);
			xmlhttp.send(null);
		}
	}
function work(action)
	{
			xmlhttp=GetXmlHttpObject()
			if (xmlhttp==null)
			{
				alert ("Your browser does not support XMLHTTP! get firefox!");
				return;
			}

		xmlhttp.onreadystatechange=function()
			{
				if(xmlhttp.readyState==4)
				{
					document.getElementById('work_button').innerHTML=xmlhttp.responseText;
				}
			}	

		if(action == 'show')
		{
			xmlhttp.open("GET","scripts/php/workShow.php",true);
			xmlhttp.send(null);
		}else{
			xmlhttp.open("GET","scripts/php/workHide.php",true);
			xmlhttp.send(null);
		}
	}
function education(action)
	{
			xmlhttp=GetXmlHttpObject()
			if (xmlhttp==null)
			{
				alert ("Your browser does not support XMLHTTP! get firefox!");
				return;
			}

		xmlhttp.onreadystatechange=function()
			{
				if(xmlhttp.readyState==4)
				{
					document.getElementById('education_button').innerHTML=xmlhttp.responseText;
				}
			}	

		if(action == 'show')
		{
			xmlhttp.open("GET","scripts/php/educationShow.php",true);
			xmlhttp.send(null);
		}else{
			xmlhttp.open("GET","scripts/php/educationHide.php",true);
			xmlhttp.send(null);
		}
	}
function project(action)
	{
			xmlhttp=GetXmlHttpObject()
			if (xmlhttp==null)
			{
				alert ("Your browser does not support XMLHTTP! get firefox!");
				return;
			}

		xmlhttp.onreadystatechange=function()
			{
				if(xmlhttp.readyState==4)
				{
					document.getElementById('project_button').innerHTML=xmlhttp.responseText;
				}
			}	

		if(action == 'show')
		{
			xmlhttp.open("GET","scripts/php/projectShow.php",true);
			xmlhttp.send(null);
		}else{
			xmlhttp.open("GET","scripts/php/projectHide.php",true);
			xmlhttp.send(null);
		}
	}
function skill(action)
	{
			xmlhttp=GetXmlHttpObject()
			if (xmlhttp==null)
			{
				alert ("Your browser does not support XMLHTTP! get firefox!");
				return;
			}

		xmlhttp.onreadystatechange=function()
			{
				if(xmlhttp.readyState==4)
				{
					document.getElementById('skill_button').innerHTML=xmlhttp.responseText;
				}
			}	

		if(action == 'show')
		{
			xmlhttp.open("GET","scripts/php/skillShow.php",true);
			xmlhttp.send(null);
		}else{
			xmlhttp.open("GET","scripts/php/skillHide.php",true);
			xmlhttp.send(null);
		}
	}
function reference(action)
	{
			xmlhttp=GetXmlHttpObject()
			if (xmlhttp==null)
			{
				alert ("Your browser does not support XMLHTTP! get firefox!");
				return;
			}

		xmlhttp.onreadystatechange=function()
			{
				if(xmlhttp.readyState==4)
				{
					document.getElementById('reference_button').innerHTML=xmlhttp.responseText;
				}
			}	

		if(action == 'show')
		{
			xmlhttp.open("GET","scripts/php/referenceShow.php",true);
			xmlhttp.send(null);
		}else{
			xmlhttp.open("GET","scripts/php/referenceHide.php",true);
			xmlhttp.send(null);
		}
	}
