function createNewDoc(link_,target,p_id,p_lock)
{
	if(p_lock=='yes')return;
	if(link_!='')
	{
		if(target=='_blank')
			document.open(link_,'','fullscreen=1');
		else
		{
			document.location=link_;
			return false;
		}
		
	}
	else
		document.location="/showPage.php?DocumentId="+p_id;
}
