// fm code library: gui functions, etc.// version 1.0 - release 2006/02/25// version notes:  original version//loadFrame v1.0 - 2006/02/25 - FLfunction loadFrame(target_fr, strURL){	document.getElementById(target_fr).src=strURL;}//swapImg v1.0 - 2006/02/25 - FL//api notes:  image objects must be created by function preload() called at onLoad event of source html's <body>.function swapImg(imgID){	var hPath = eval("h_" + imgID + ".src");	document.getElementById(imgID).src = hPath;}//restoreImg v1.1 - 2006/11/20 - FL - changed path and types ".gif" to ".png"//restoreImg v1.0 - 2006/02/25 - FLfunction restoreImg(imgID){	var imgPath = "_images/_html/link_" + imgID + ".png"	document.getElementById(imgID).src=imgPath}
