var html = "";

function open_frame_vlife(){
	
	var html_str = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='1017' height='60'><param name='movie' value='menu-vlife.swf?country="+id_country+"' /><param name='quality' value='high' /><param name='wmode' value='transparent' /><embed src='menu-vlife.swf?country="+id_country+"' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='1017' height='60' wmode='transparent'></embed></object>";
	
	document.getElementById('div-menu-vlife').innerHTML = html_str;
	
	$("#sito").hide();
	document.getElementById('sito').innerHTML = '';	
	$("#vlife").fadeIn('slow');

}

function close_frame_vlife(){
			
	$("#vlife").fadeOut();
	
	var html_str = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0' width='998' height='620'><param name='movie' value='loadSite.swf?country="+id_country+"' /><param name='quality' value='high' /><embed src='loadSite.swf?country="+id_country+"' quality='high' pluginspage='http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='998' height='620'></embed></object>";
	
	document.getElementById('sito').innerHTML = html_str;
	
	$("#sito").fadeIn();

}

$(document).ready(function(){
	
	if (cookie == '') {
		$("#sito").hide();
		document.getElementById('sito').innerHTML = '';
		$("#select-country").show();
		return;
	}
	
	html = document.getElementById('sito').innerHTML;
	
	$("#btn_back_vlife").click( function() {
		close_frame_vlife();
	});
	
	$("#btn_back_diario").click( function() {
		close_frame_diario();
	});	
	
});

$(window).resize(function() {
	if ($(window).height() < 600) {
		$("#sito").css('top', '0px').css('marginTop', '0px');
		$("#vlife").css('top', '0px').css('marginTop', '0px');
	} else {
		$("#sito").css('top', '50%').css('marginTop', '-310px');
		$("#vlife").css('top', '50%').css('marginTop', '-300px');
	}
});

function open_dealers(my_url) {
	url=my_url;
	mywidth = 540;
	myheight = 600;
	myleft = (screen.width - mywidth) / 2;
	mytop = (screen.height - myheight) / 2;
	params = ",scrollbars=yes,resizable=no,menubar=0,toolbar=0,status=0,location=0,directories=0";
	window.open(url, "", "width=" + mywidth + ",height=" + myheight + ",left=" + myleft + ",top=" + mytop + params);
}

function selectCountry() {
	var country = $('#country').val();
	window.location.href = window.location+country;
}