//// JAVASCRIPT FILE ////
//// MOLE PRODUCTIONS MARCH 2005 ////


d=document;

function movepic(img_name,img_src) {
	d[img_name].src=img_src;
}

function printYear() {
	thedate=new Date();
	theyear=thedate.getFullYear();
	d.write(theyear);
}

function checkForm() {
	var theFields=d.f.fields.value;
	data=theFields.split(",");
	for (i=0; i<data.length; i++) { //>
		field=data[i].split("|");
		if (d.f[field[0]].value == "") {
			alert("Please enter your "+field[1]+" before proceeding.");
			d.f[field[0]].select();
			d.f[field[0]].focus();
			return false;
		}
	}
	return true;
}

// POP-UP WINDOW //
function popup(url,winx,winy,scrollbaryn) {
	newwin=window.open(url, "popup", "width="+winx+",height="+winy+",toolbar=0,status=0,resizable=yes,"+scrollbaryn);
	//e.g. <a href="javascript:popup('me.html','300','100','scrollbars');">Open with scroll</a>
	//e.g. <a href="javascript:popup('me.html','300','100','');">Open without scroll</a> //
}
