Deluge Script

Deluge Script

I am new to ZoHo, and my company has a form setup to input different data. I am trying to setup a workflow to hide certain form fields from which user is logged on. It is not working (either it does not hide the fields or it hides them for everyone). Can someone look and tell me where I have gone wrong. 
This script does not work:
current_user_id = zoho.loginuser;
is_target_user = "someone@somewhere.com";
if(current_user_id == is_target_user)
{
      hide Product_Code;
      hide Is_this_work_order_PCD_controlled;
      hide Person;
      hide The_fault_log_is;
      hide Transfer_1_location;
      hide Table_Inspected;
      hide Transfer_2_date;
      hide Inspector;
      hide Transfer_1_date;
      hide Transfer_2_location;
      hide Customer_Order_Number;
      hide Customer_Name;
      hide Customer_Part_Number;
      hide Location_after_packaging;
      hide Specification_revision;
      hide Fabric_Batch;
      hide Warp_tension_end_of_roll;
      hide Picks_minute;
      hide Inspector_Comments;
      hide Inspection_date;
      hide Table_Inspected;
      hide Packaging_Date;
      hide Inspection_stamp;
      hide doc1_Rev1;
}

This one hides the info from all users:
current_user_id = "someone";
hide Product_Code;
hide Is_this_work_order_PCD_controlled;
hide Weaver;
hide The_fault_log_is;
hide Transfer_1_location;
hide Table_Inspected;
hide Transfer_2_date;
hide Inspector;
hide Transfer_1_date;
hide Transfer_2_location;
hide Customer_Order_Number;
hide Customer_Name;
hide Customer_Part_Number;
hide Location_after_packaging;
hide Specification_revision;
hide Fabric_Batch;
hide Warp_tension_end_of_roll;
hide Picks_minute;
hide Inspector_Comments;
hide Inspection_date;
hide Table_Inspected;
hide Packaging_Date;
hide Inspection_stamp;
hide doc1_Rev1;

Thanks in advance!