function form_jump(targ,selObj,restore){
 eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
 if (restore) selObj.selectedIndex=0;
}

function smilie(emote) {
 document.reply.comments.value += emote;
 document.reply.comments.focus();
}

function validateForm(){
	if(document.getElementById('fullname').value == ""){
		alert('You MUST Supply your fullname');
		document.getElementById('fullname').focus();
		return false;
	}
	if(document.getElementById('email').value == ""){
		alert('You MUST Supply your Email Address');
		document.getElementById('email').focus();
		return false;
	}
	if(document.getElementById('projectname').value == ""){
		alert('You MUST Supply your Project Name');
		document.getElementById('projectname').focus();
		return false;
	}
	if(document.getElementById('username').value == ""){
		alert('You MUST Supply a UserName');
		document.getElementById('username').focus();
		return false;
	}
	if(document.getElementById('password').value == ""){
		alert('You MUST Supply a Password');
		document.getElementById('password').focus();
		return false;
	}
	return true;
}

