Advertisement
Advertisement
| 06.23.2008 at 03:53PM PDT, ID: 23509409 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: |
<script language="javascript">
p_name= "";
p_id= "";
p_old_path= "";
p_new_path= "";
p_dir_owner= "";
p_primary_stew= "";
p_bckup_stew= "";
p_full_access= "";
p_read_access= "";
p_description= "";
p_other_info= "";
// Get names
var queryString = window.location.href.substring((window.location.href.indexOf('?') + 1));
var array1 = queryString.split('&'); // Each array element is in format "fieldname=value"
for(var i = 0; i < array1.length; i++)
{
var tempArray = array1[i].split('='); // Separate fieldname and value
eval(tempArray[0] + " = \"" + tempArray[1] + "\"");
}
</script>
|