<!-- generic image rollover -->

i = 0;

function imageMouseOver(imagePath,imageFile,imageName) {
	document[imageName].src = imagePath + imageFile; }

function imageMouseOut(imagePath,imageFile,imageName) {
	document[imageName].src = imagePath + imageFile; }

function imageRollover(imagePath,imageFile,imageName) {
	document[imageName].src = imagePath + imageFile; }

function displayImage(imagePath,imageFile,imageName) {
	document[imageName].src = imagePath + imageFile; }
	
function next(imageName) {
	i++;
	if (i>4) 
		i=1;
	document[imageName].src = "images/" + i + ".gif"; }
	
	
function extranetLogin() {

	if (form_contact.username.value == "versata" && form_contact.password.value == "roi") {
		document.location.href= "http://www.electroactive.com/extranet/versata_roi";
	}
	else if (form_contact.username.value == "montemaggiore" && form_contact.password.value == "paolo") {
		document.location.href= "http://www.electroactive.com/extranet/montemaggiore";
	}
	else {
		document.getElementById("error_div0").style.display = "none";
		document.getElementById("error_div1").style.display = ""; 
	}
		
}