function addBookmark(url,title ) {
    if (window.sidebar) { // firefox
          window.sidebar.addPanel(title, url,"");
    } else if( document.all ) { //MSIE
            window.external.AddFavorite( url, title);
    } else {
           alert("Sorry, your browser doesn't support this");
    }
}
function closeFlash(){
    $('#TimerFlash').css("visibility","hidden");
}

function ShowFlash(filepath, width, height)
{
	document.write(" <object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\""+width+"\" height=\""+height+"\" VIEWASTEXT> ");
	document.write(" 		<param name=\"movie\" value=\""+filepath+"\"> ");
	document.write(" 		<param name=\"quality\" value=\"high\"> ");
	document.write(" 		<param name=\"wmode\" value=\"transparent\"> ");
	document.write(" 		<param name=\"menu\" value=\"false\" /> ");
	document.write("        <param name=\"allowScriptAccess\" value=\"always\" />");
	document.write(" 		<embed src=\""+filepath+"\" allowScriptAccess=\"always\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\" wmode=\"transparent\" menu=\"false\" ></embed> ");
	document.write(" </object> ");
}
function OpenMsgBox()
{
	var mDiv= document.getElementById("MessageBox").style.display="inline";
}
function CloseMsgBox()
{
	var mDiv= document.getElementById("MessageBox").style.display="none";
}