Sure thing. Simply modify the orginal function jumpto2() inside the code of Step 1 to:
Code:
function jumpto2(url, breakout){
if (typeof breakout!=undefined" && breakout=="break")
window.parent.location=url
if (buttontarget=="")
window.location=url
else if (buttontarget=="_new")
window.open(url)
else
parent[buttontarget].location=url
}
Then inside your HTML, you can do things such as:
Code:
onClick="jumpto2('http://yahoo.com')" //NO targeting
onClick="jumpto2('http://yahoo.com', 'break')" //break out of frame
Bookmarks