function mailThisUrl(intId, strSubject) {
	
	strLoc = window.location + "index/view/id/" + intId;
	strEmail = "emailus@gspintl.com";
	
	window.location = "mailto:" + strEmail + "?subject=" + strSubject + "&body=" + document.title + " " + strLoc;
	
}

function printThisUrl(intId) {
	
	strLoc = window.location + "index/view/id/" + intId + "/view/print";
	
	window.open(strLoc);
	
}