// JavaScript Document
var highlightColor = '#CCFF99';
//below checks to see if an element isn't empty
function notEmpty(elem) {
	if(elem.value.length==0){
		elem.style.background = highlightColor;
		return false;
	} else {
		elem.style.background = '#FFFFFF';
		return true;	
	}
}
//below checks to see if 2 elements match
function variableMatch(elem1,elem2) {
	if(elem1.value==elem2.value){
		elem1.style.background = '#FFFFFF';
		elem2.style.background = '#FFFFFF';
		return true;	
	} else {
		elem1.style.background = highlightColor;
		elem2.style.background = highlightColor;
		return false;	
	}
}
function uploadImage(){
	var wid = 600;
	var hei = 600;
	var left = (screen.width/2)-(wid/2);
	var top = (screen.height/2)-(hei/2);
	window.open('image-bank.php','imageUploader','width=600,height=600,top='+top+',left='+left+',menubar=no,location=no,resizable=no,toolbar=no,status=no,scrollbars=1');	
}
