function FSOpenDialog(path, width, height,control) 
{
   	var res =  showModalDialog(path ,'','unadorned:yes;dialogHeight:' + height  + 'px;dialogWidth:'+ width + 'px;left:'+((screen.width -220) / 2)+';top:'+ (screen.height - 240) / 2+';edge:Sunken; status:0;resizable:yes;Help:No;');
   	if ( res != null)
   	{
	    control.value = res;
	    return true;
	}
	return false;
}
