// JavaScript Document
<!--
function openFW(url) {
	var w = screen.width;  // fixed width
	var h = screen.height; // fixed height
	//var url = url_full;
	//if(w <= 800) {
	//	url = url_800;
	//}
	leftPosition = 0;		// centera orizz.
	topPosition = 0;		// centera verti.
	if (h<800)	{
		//set popup window properties
		var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no'; 
	} else {
		//set popup window properties
		var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no'; 
	}
	var popup = window.open(url,'remote',windowprops); // apre popup window con propriet�
	popup.moveTo(0,0)
	popup.resizeTo(screen.width,screen.height);
	popup.focus(); // focus
}
function openWin() {
	//openFW("file:///Users/ced/Documents/Flex%20Builder%203/Sushi/bin/Sushi.html#");
	openFW("http://www.sushiclub133.com/Sushi.html");
}

function openWinSushi() {
	//openFW("file:///Users/ced/Documents/Flex%20Builder%203/Sushi/bin/Sushi.html#");
	openFW("http://www.sushiclub133.com/Sushi.html");
}

function openWinArt() {
	//openFW("file:///Users/ced/Documents/Flex%20Builder%203/Sushi/bin/Sushi.html#");
	openFW("http://www.sushiclub133.com/art/index.html");
}

//-->
