function qcformshow()
{
	//alert(document.getElementById('ContactForm').style.display );
	if(document.getElementById('ContactForm').style.display == "block")
	{
		document.getElementById('ContactForm').style.display = "none";
		document.getElementById('quickcontact').src = "http://www.marinmediagroup.com/mmg/images/quick-contact.png";
	}
	else
	{
		document.getElementById('ContactForm').style.display = "block";		
		document.getElementById('quickcontact').src = "http://www.marinmediagroup.com/mmg/images/quick-contact_clicked.png";
	}
	return false;
}