function socialbookmarks()
{
document.write("<a href='http://del.icio.us/post?url="+document.location.href+"&title="+document.title+"' target='_blank'><img src='images/delicious.png' alt='ADD TO DEL.ICIO.US'></a> <a href='http://digg.com/submit?phase=2&url="+document.location.href+"&title="+document.title+"' target='_blank'><img src='images/digg.png' alt='ADD TO DIGG' /></a> <a href='http://reddit.com/submit?url="+document.location.href+"&title="+document.title+"' target='_blank'><img src='images/reddit.png' alt='ADD TO REDDIT'></a> <a href='http://www.stumbleupon.com/submit?url="+document.location.href+"&title="+document.title+"' target='_blank'><img src='images/stumbleupon.png' alt='ADD TO STUMBLEUPON'></a> <a href='http://technorati.com/faves?add="+document.location.href+"' target='_blank'><img src='images/technorati.png' alt='ADD TO TECHNORATI FAVORITES'></a> <a href='http://myweb.yahoo.com/myresults/bookmarklet?u="+document.location.href+"&t="+document.title+"&ei=UTF’ target='_blank'><img src='images/yahoo.png' alt='ADD TO YAHOO MYWEB'></a> <a href='http://myjeeves.ask.com/mysearch/BookmarkIt?v=1.2&t=webpages&url="+document.location.href+"&title="+document.title+"' target='_blank'><img src='images/ask.png' alt='ADD TO ASK'></a> <a href='http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+document.location.href+"&title="+document.title+"' target='_blank'><img src='images/google.png' alt='ADD TO GOOGLE'></a> <a href='http://www.spurl.net/spurl.php?url="+document.location.href+"&title="+document.title+"' target='_blank'><img src='images/spurl.png' alt='ADD TO SPURL'></a> <a href='http://www.facebook.com/sharer.php?u="+document.location.href+"' target='_blank'><img src='images/facebook.png' alt='ADD TO facebook'></a>&nbsp;&nbsp;");
}

function validateForm(objForm)
{
	var szErrorMessage = "You need to enter the following information : \n\n";
	var szEmpty = "";
	var bOk = true;
	
if (objForm.name.value == "") {bOk = false; szErrorMessage += "Your name\n";}
if (objForm.phone.value == "") {bOk = false; szErrorMessage += "Your phone number\n";}
if (objForm.email.value == "") {bOk = false; szErrorMessage += "Your email address\n";}
	if (!bOk) {
		alert(szErrorMessage);
	}
	return bOk;
}