function abreAtendimento () {
	   var width = 450;
	   var height = 465;
	   var left = (screen.width - width)/2;
	   var top = (screen.height - height)/2;;   
	   window.open('../atd/view/?action=AppUsr/login','atendimento', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no,maximized=no,titlebar=no, fullscreen=no');
}

function open_popup(width, height, pagina) {
	if(!pagina) {
		pagina = '';
	}

	var left = (screen.width - width)/2;
	var top = (screen.height - height)/2;

	var site = window.open(URL_SITE + pagina, "VilaGermanica", 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
	site.focus();
}

var VilaGermanica = {
	init: function() {
		var params = {
			quality: "high",
			scale: "noscale",
			wmode: "window",
			allowscriptaccess: "always",
			bgcolor: "#FFFFFF"
		};
		var flashvars = {
			siteXML: "bin/xml/site.xml"
		};
		var attributes = {
			id: "flashcontent",
			name: "flashcontent"
		};
		
		if (document.body.clientWidth <= 1280 && document.body.clientHeight <= 800 || window.name == "VilaGermanica"){
			swfobject.embedSWF("bin/main.swf", "flashcontent", "100%", "100%", "10", "bin/expressInstall.swf", flashvars, params, attributes);	
		} else {
			abreSite();
		}

	}	
}

function abreSite() {
	open_popup(1280, 800, '/site.php');
}
function imprimeReceita(codigo) {
	open_popup(700, 600, '/receitas.php?codigo=' + codigo);
}