function openPopup(file,width,height,scrollbars,resize,toolbar,status)
{
    if (scrollbars == '')
	{
        scrollbars = 'no';
    }
    
	if (resize == '')
    {
        resize = 'no';
    }
    
	if (toolbar == '')
    {
        toolbar = 'no';
    }
    
	if (status == '')
    {
        status = 'no';
    }
    
    window.open(file,'NewEntry','top=50,left=50,width='+width+',height='+height+',scrollbars='+scrollbars+',resize='+resize+',toolbar='+toolbar+',status='+status);
}