﻿
/******************************************
* Popup Box- By Jim Silver @ jimsilver47@yahoo.com
* Visit http://www.dynamicdrive.com/ for full source code
* This notice must stay intact for use
******************************************/

var ns4=document.layers

var ie4=ns6=document.getElementById||document.all
//drag drop function for NS 4////
/////////////////////////////////


function hidebox(control){
crossobj=ie4? document.getElementById(control) : document.all.control
if (ie4||ns6)
crossobj.style.display="none"
else if (ns4)
document.showimage.visibility="none"
}

function showbox(control){

crossobj=ie4? document.getElementById(control) : document.all.control
if (ie4||ns6)
{
crossobj.style.display="block"
}
else if (ns4)
{

document.showimage.display="block"
}

}
function ToggleView(control, controlId)
{

    if(document.getElementById(controlId).style.display=='none')
    {
    if(document.getElementById(controlId+"_image")!=null)
        document.getElementById(controlId+"_image").setAttribute("src","/images/en/icon-eye-disabled.gif");
        showbox(controlId);
    }
    else if(document.getElementById(controlId).style.display=='block')
    {
    if(document.getElementById(controlId+"_image")!=null)
         document.getElementById(controlId+"_image").setAttribute("src","/images/en/icon-eye.gif");
        hidebox(controlId);
    }
}




