Sure, try the below modified .js file, which lets you specify a link target for each link within a drop down menu individually. With the modified script, inside your menu contents code, make use of the 4th parameter of each link to specify a link target:
Code:
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'width:150px; background:#DFFDF4', linktarget:'_parent'} //Second menu variable. Same precaution.
anylinkmenu1.items=[
["Why Cleanse?", "why.php"],
["Allergens Table", "forms/allergens_table.pdf", "", "_new"],
["Product Ingredients", "forms/ingredients.pdf", "", "mytarget"],
["Medical study", "forms/med_study.pdf"]
Here the 2nd link will open in a new window, and the 3rd link will open in the window with target "mytarget".
Bookmarks