
	/*
	+----------------------------------------------------------------
	|
	|	MJGUEST
	|	=============================================================
	|	Copyright (c) 2002-2005 Giacomo "mdsjack" Menni
	|	Terms of agreement and support at www.mdsjack.bo.it
	|
	+----------------------------------------------------------------
	|	[ FRONTEND MODULE ]
	|	Javascript popup opener
	+----------------------------------------------------------------
	*/

var w = 570;
var h = 580;
var page = '/guestbook/mjguest.php?do=read';
var popup = null;

function guestbook()
{
	popup = window.open(page, 'mjguest', 'width='+w+'px,height='+h+'px,top='+((screen.availHeight/2)-(h/2))+'px,left='+((screen.availWidth/2)-(w/2))+'px,directories=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0', false);
	
	if (popup != null) popup.focus();
}

