function manage_index_string_onclick(value_param)
{

	index_string = document.getElementById('index_string');
	
	if (value_param == "i.e. Baja California, Los Cabos") 
	{
		index_string.value = "";
		index_string.style.color = "#000000";
	}
}

function manage_index_string_onblur(value_param)
{

	index_string = document.getElementById('index_string');
	
	if (value_param == "") 
	{
		index_string.value = "i.e. Baja California, Los Cabos";
		index_string.style.color = "gray";
	}
}

// Need to use correctly change_preview.
var template_global = 1;
var css_global = 1

// Change the preview image of edit webpage template
// Type c=>css, t=>template
function change_preview(element, type) 
{
	image = document.getElementById('preview_webpage');
	
	if(type == 'c')
	{
		css_global = element;
	}
	else
	{
		template_global = element;
	}

	image.src = '/images/website/previews/t'+template_global+'c'+css_global+'.jpg';
}
