function closeAll()
{	
	if(window.calInst!=null)
	{
		
		window.calInst.close();
	}
}

function openPopUp(url,windowName, width, height)
{ 
   
if(window.calInst==null)
{ 
 ;
} 
else 
{ 
    window.calInst.close(); 
    window.calInst=null; 
 
} 

window.calInst=window.open(url,windowName,"toolbars=no,location=no,directories=no,status=no,scrollbars=1,menubar=0,resizable=0,copyhistory=no, top=0,left=5" + ", width=" + width + ", height=" + height); 

//return false; 

} 


function openPopUpCenter(url,windowName, width, height)
{ 
    
if(window.calInst==null)
{ 
 ;
} 
else 
{ 
    window.calInst.close(); 
    window.calInst=null; 
 
} 


window.calInst=window.open(url,windowName,"toolbars=no,location=no,directories=no,status=no,scrollbars=0,menubar=0,resizable=0,copyhistory=no, top=300,left=300" + ", width=" + width + ", height=" + height); 

return false; 

} 

function openPopUpRight(url,windowName, width, height,top,left)
{ 
    
if(window.calInst==null)
{ 
 ;
} 
else 
{ 
    window.calInst.close(); 
    window.calInst=null; 
 
} 


window.calInst=window.open(url,windowName,"toolbars=no,location=no,directories=no,status=no,scrollbars=1,menubar=0,resizable=0,copyhistory=no, top="+ top +",left="+ left + ", width=" + width + ", height=" + height); 

//return false; 

} 

