function makess(stringin)
{
	var SS = "_";				
	var encoded = "";
	for (var i = 0; i < stringin.length; i++ ) {
		var ch = stringin.charAt(i);
	    if (ch == " ") {
		    encoded += "_";				// x-www-urlencoded, rather than %20
		} else  {
		    encoded += ch;
			}
	} // for

	return encoded;
};


function makeemail()
{
	var encoded = "";
	encoded += "mailto:?subject=";
	encoded += document.title;
	encoded += "&body=This is a good article about IT Service Management and I thought you would like it.%0A%0AYou can read it here: ";
	encoded += location.href;
	return encoded;
};
function godigg()
{
window.open(digg,'submit_to_digg','width=980,height=768,directories=no,location=no,menubar=no,scrollbars=yes,dependent=yes,status=no,toolbar=no,resizable=yes');
return (true);
}
