//Specify display mode (0 or 1)
//0 causes document to be displayed in an inline frame, while 1 in a new browser window
var displaymode=0
//if displaymode=0, configure inline frame attributes (ie: dimensions, intial document shown
///var iframecode='<iframe id="ciccio" style="width:807px;height:510px;" scrolling="no" src="ifr_prod_00.html"></iframe>'

/////NO NEED TO EDIT BELOW HERE   ////////////

///if (displaymode==0)
///document.write(iframecode)

function jumpto(inputurl){
 if (document.getElementById&&displaymode==0){
	document.getElementById("index_iframe").src=inputurl;
	}
}

