/**********************************************************************
'Project          : Spec
'Created By       : Satwinder Singh												
'*********************************************************************/

#disablingDiv
{
    /* Do not display it on entry */
    display: none; 

    /* Display it on the layer with index 1001.
       Make sure this is the highest z-index value
       used by layers on that page */
    z-index:1001;
    
    /* make it cover the whole screen */
    position: absolute; 
    top: 0%; 
    left: 0%; 
    width: 100%; 
    height: 115%; 

    /* make it white but fully transparent */
    background-color: #000000; 
    opacity:.00; 

    filter: alpha(opacity=00); 
}
#disablingDiv1
{
    /* Do not display it on entry */
    display: block; 

    /* Display it on the layer with index 1001.
       Make sure this is the highest z-index value
       used by layers on that page */
    z-index:1002;
    
    /* make it cover the whole screen */
    position: absolute; 
    top: 3%;
    left: 32%; 
    width: 400; 
    height: 300; 
}
