/**
 * Javascripts for makeitshareit.com
 *
 */
var confirmIsNeeded = false;

//Script by http://www.java-Scripts.net and http://wsabstract.com
function doClear(theText) {
	 if (theText.value == theText.defaultValue) {
			 theText.value = ""
	 }
	 document.comment_form.submit.disabled=false;
}
// confirm user wants to go to the link given
function confirmLink(str, url) {
	if (confirm (str)) {
		document.location = url;
	}
}
function setConfirmIsNeeded(bool) {
	confirmIsNeeded = bool;
}
function confirmLeavePage() {
	if(confirmIsNeeded) {
		return "You have unsaved changes that will be lost if you continue.";
	}
}