$(document).ready(function() {
	$("#PrivacyContent").hide();
	
});

function toggleFullScreen(fullscreen) {
	if(fullscreen == "true") {
		$("#s7").removeClass("normal");
		/*
		$("#s7").animate({
			width: "100%", 
			height: "100%"
		}, 1000);
		*/
	} else {
		$("#s7").addClass("normal");
	}	
}

function closePopup()
{
 if(false == my_window.closed)
 {
    my_window.close ();
 }
 else
 {
    alert('Window already closed!');
 }
}

function onPrivacy() {
	$("#PrivacyContent").show();
	window.open('legal/legal-policy/index.htm','Info','status=0,toolbar=0,scrollbars=1,resizable=false,width=560,height=500');
	
}

function onTerms() {
	$("#TermsContent").show();
	window.open('legal/terms-and-conditions/index.htm','Info','status=0,toolbar=0,scrollbars=1,resizable=false,width=545,height=468');
}


