var blnDOMSUPPORT = (document.getElementById) ? true : false;
window.onload = init;

function mailto () {
	var email = window.prompt("Please enter an e-mail address to which you would like to send information from vcsh.com:\n", "") || "";
	var subject = "Share with you something on vcsh.com";
	var message = "I just found something you might interested in. Please read the article/information below from www.vcsh.com, a website of a performance consulting company:";
	var newline = escape("\n\n");
	var link = document.location.href;
	
	var mymsg = "mailto:" + email + "?subject=" + subject + "&body=" + message + newline + link;
	document.location.href = mymsg;
	//alert (mymsg);
}

