//////////////////////////////////////////////////
//
//
//////////////////////////////////////////////////
var indexWindow;

function popupWindow(url,width,height)
{
	var stringa = 'width='+width+',height='+height+',resizable=yes,scrollbars=yes';
	indexWindow = window.open(url,'',stringa);
	indexWindow.focus();
	indexWindowOpen = true;
}

function confirmRedirect(text, url)
{
//"Downloading this picture the cost will be added to your bill.\r\nWould you like to continue the download?"
    if(confirm(text))
    {	// yes
        location = url;
    }
}



