/*
	Finestre ausiliarie()

	Author: Deiro Claudio
	Author Email: deiro@livio.it
*/

var popWnd = null;

function openAuxnoscroll(href, w, h)
{
	if (popWnd && !popWnd.closed) popWnd.close();
	
	var winWidth = w;
	var winHeight = h;
	var xPos = (screen.availWidth-winWidth)/2;
	var yPos = (screen.availHeight-winHeight)/2;

	popWnd = this.open(href, "_blank", "innerWidth=" + w + ",innerHeight=" + h + ",width=" + w + ",height=" + h + ",titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,status=no,top=" + yPos + ",left=" + xPos);
}

function openAuxSearch(href, w, h)
{
	
	var winWidth = w+18;
	var winHeight = h;
	var xPos = (screen.availWidth-winWidth)/2;
	var yPos = (screen.availHeight-winHeight)/2;

	this.open(href, "_blank", "innerWidth=" + w + ",innerHeight=" + h + ",width=" + (w+18) + ",height=" + h + ",titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,status=no,top=" + yPos + ",left=" + xPos);
}

function openAux(href, w, h)
{
	if (popWnd && !popWnd.closed) popWnd.close();

	if (checkOS() != "Macintosh" || checkBrowser() != "MSIE") w += 16;

	if (checkOS() == "Macintosh")
	{
		if (checkBrowser() == "MSIE")	h -= 21;
		else h -= 10;
	}

	var winWidth = w;
	var winHeight = h;
	var xPos = (screen.availWidth-winWidth)/2;
	var yPos = (screen.availHeight-winHeight)/2;

	popWnd = this.open(href, "_blank", "width=" + w + ",height=" + h + ",titlebar=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,status=no,top=" + yPos + ",left=" + xPos);
}

function popClose()
{
	if (popWnd && !popWnd.closed) popWnd.close();
}

window.onunload = popClose;
