/*******************************************************************************
Copyright (c) 1999 Thomas Brattli (www.bratta.com)

eXperience DHTML coolFrameMenus - Get it at www.bratta.com
Version Beta 1.0
This script can be used freely as long as all copyright messages are
intact. 

Visit www.bratta.com/dhtml/scripts.asp for the latest version of the script.
*******************************************************************************/

/*****************************************************************************
Default browsercheck
******************************************************************************/
function makeMenus(){
	if(parent.frmMenu){
		if(parent.frmMenu.oCFMenu){
			if(parent.frmMenu.oCFMenu.frameString2){
				document.open()
				document.write(parent.frmMenu.oCFMenu.frameString)
				document.write(parent.frmMenu.oCFMenu.frameString2)
				document.close()
				parent.frmMenu.oCFMenu.refresh()
			}
		}
	}
}
function unload(){
	if(parent.frmMenu){
		if(parent.frmMenu.oCFMenu){
			parent.frmMenu.oCFMenu.loaded=0
		}
	}
}
makeMenus()
window.onunload=unload;
