function frame(who){
var displaymode=0

var iframecode='<iframe id="external" style="width:180px;height:470px" src="'+who+'" frameBorder="1" style="border:solid #FF9900 2px"></iframe>'


if (displaymode==0)
document.write(iframecode)

function jumpto(inputurl){
if (document.getElementById&&displaymode==0)
document.getElementById("external").src=inputurl
else if (document.all&&displaymode==0)
document.all.external.src=inputurl
else{
if (!window.win2||win2.closed)
win2=window.open(inputurl)
//else if win2 already exists
else{
win2.location=inputurl
win2.focus()
}
}
}
}


function selectWin(source,h1,w1){
 newWin = window.open(source,'','height=' + h1 + ',width=' + w1 + ',top=10,left=0,scrollbars');
}

