function openForm (link) 
{
        
	form = window.open(link, '', 'width=800,height=600,status=no,scrollbars=yes');
	
	form.focus();
    
}
