
////////////////////////////////////////////////////////////////////////////////

function Init(){
if(document.getElementById && document.getElementsByTagName){
 
if(document.getElementById('bluedot')){
document.getElementById('bluedot').onmouseover=function(){
document.getElementById('bluedot').className='bluetextover';
};
document.getElementById('bluedot').onmouseout=function(){
document.getElementById('bluedot').className='bluetext';
};
document.getElementById('bluedot').onclick=function(){
alert('Unable to connect to the private network');
};
}

if(document.getElementById('moreinfo')){
document.getElementById('moreinfo').onmouseover=function(){
document.getElementById('moreinfo').className='bluetextover';
};
document.getElementById('moreinfo').onmouseout=function(){
document.getElementById('moreinfo').className='bluetext';
};
document.getElementById('moreinfo').onclick=function(){
alert('More information not available');
};
}

}
}

////////////////////////////////////////////////////////////////////////////////

function popUp(URL){
winpops=window.open(URL,"password","width=400,height=150,left=10,top=10,status=0,scrollbars=0,resizable=1,menubar=0,location=0,toolbar=0");
}

////////////////////////////////////////////////////////////////////////////////

function ConfirmDelete(obj){
var agree=confirm(obj);
if (agree)
return true ;
else
return false ;
}

////////////////////////////////////////////////////////////////////////////////



