// JavaScript Document
var IE = (navigator.appName=="Microsoft Internet Explorer") && (navigator.platform && navigator.platform == 'Win32');

function checkValues(message){
	for(var x=0;x<document.forms[0].elements.length;x++){
		if(IE && document.forms[0].elements[x].getAttribute("required") != null && document.forms[0].elements[x].value.length == 0){
			alert(message);
			return false;
		}
	}

	return true;	
}