	function doSwapIt(t,name,onoff)
	{
		var img = (onoff == 1) ? "_on.gif" : "_off.gif";
		t.src	= "/images/buttons/" + name + img;
	}
	
	function doPrint(page)
	{
		window.open(page,"_blank","location=0,status=0,scrollbars=1,resizable=1,toolbar=0,menubar=1");
	}
	function Oops(t)
	{
		if (!t.first.value) {
                        alert("The FIRST NAME field is empty!");
                }
                else if (!t.last.value) {
                        alert("The LAST NAME field is empty!");
                }
                else if (!t.email.value) {
                        alert("The EMAIL field is empty!");
                }
                else if (!t.comments.value) {
                        alert("The COMMENTS field is empty!");
                }
                else {
                        t.submit();
                }
	}
	function alrtMe(t,f)
	{
		var msg		= "Your resume is processing....";
		alert(msg);
		
		t.disabled	= true;
		f.submit();
	}