// JavaScript Document

var templates = new Array();

var current = 0;


//templates[0] = "images/Templates/Sol.jpg";
//templates[1] = "images/Templates/Perla.jpg";

var count = templates.length ;

var id = "templ";

function nextTemplate() {
	
	current++;
	
	if( current == count ) {
		
		current = 0;
	}
	

	document.getElementById( id ).src = templates[current];
}

function prevTemplate() {
	
	current--;
	
	if( current < 0 ) {
		
		current = count - 1;
	}

	document.getElementById( id ).src = templates[current];
}

function showTemplate( id ) {

	

}

function clearFields() {
	
	document.forms['getSite'].elements['fname'].value ="";
	document.forms['getSite'].elements['lname'].value ="";
	document.forms['getSite'].elements['country'].selectedIndex = "0";
	document.forms['getSite'].elements['email'].value ="";
	document.forms['getSite'].elements['phone'].value ="";
	document.forms['getSite'].elements['template'].selectedIndex = "0";
	document.forms['getSite'].elements['comments'].value ="";
}
	
function closeWindow( id ) {
	
	var err = document.getElementById( id );
	if ( err ) {
		err.style.visibility = "hidden";
	}
	
}

