// JavaScript Document
function launchAddThis(url, name, params) {
	
	newwindow = window.open(url, name, params);
	
	if (window.focus){
		newwindow.focus()
	}
}

function launchHelp(url, name, params) {
	
	newwindow = window.open('/index.php/help/' + url, name, params);
	
	if (window.focus){
		newwindow.focus()
	}
}

function launchLegal() {
	newwindow=window.open('/index.php/site/legal','name','width=500,height=600,scrollbars=yes');
	
	if (window.focus) {
		newwindow.focus()
	}
}

function launchSecurity() {
	newwindow=window.open('/index.php/site/legal#security','name','width=500,height=600,scrollbars=yes');
	
	if (window.focus) {
		newwindow.focus()
	}
}

function confirmExit() {
    return "You have attempted to leave LaudiVidni.com. Are you sure you want to exit this page?";
}

function enableConfirmExit() {
	window.onbeforeunload = confirmExit;
}

function disableConfirmExit() {
	window.onbeforeunload = undefined;
}

			
var flashvars = {mode:"review"};
var params = {};
var attributes = {};
attributes.id = "index";
swfobject.embedSWF("index.swf", "content", "100%", "100%", "10.0.0", "expressInstall.swf", flashvars, params, attributes);

