<!--
function toggleBox(szDivID, iState) // 1 visible, 0 hidden
{
    if(document.layers)	   //NN4+
    {
       document.layers[szDivID].visibility = iState ? "show" : "hide";
    }
    else if(document.getElementById)	  //gecko(NN6) + IE 5+
    {
        var obj = document.getElementById(szDivID);
        obj.style.visibility = iState ? "visible" : "hidden";
    }
    else if(document.all)	// IE 4
    {
        document.all[szDivID].style.visibility = iState ? "visible" : "hidden";
    }
}
function toggleHeight(szDivID, iState) // 1 visible, 0 hidden
{
    if(document.layers)	   //NN4+
    {
       document.layers[szDivID].height = "10px";
    }
    else if(document.getElementById)	  //gecko(NN6) + IE 5+
    {
        var obj = document.getElementById(szDivID);
        obj.style.height = "10px";
    }
    else if(document.all)	// IE 4
    {
        document.all[szDivID].style.height = "10px";
    }
}
function OpenWindow() 
{
	open('http://www.xe.net/pca/input.cgi','WindowName','width=500,height=155,menubar=no,scrollbars=no')
}
function OpenQuotesWindow(url) 
{
	open(url,'quotes','width=500,height=440,menubar=no,scrollbars=yes')
}
function OpenWindowWithSize(url,height,width) 
{
	open(url,'quotes','width='+width+',height='+height+',menubar=no,scrollbars=yes')
}
function openImageWindow(imageSrc) 
{
	fileName = 'http://www.orlandovillas.com/display_image.asp?' + escape(imageSrc);
	myWindowHandle = window.open(fileName,'windowName','directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes');
}
// -->
