﻿var stickOn = false; 

var popUp; 

function OpenFileBrowser(idname, folder, postBack, folderdepth)
{
	url = '/filebrowser.aspx' +
		'?formname=' + document.forms[0].name +
		'&id=' + idname +
		'&filename=' + document.forms[0].elements[idname].value +
		'&folder=' + folder +
		'&postBack=' + postBack +
		'&folderdepth=' + folderdepth

	popUp = window.open(url, 'filebrowser','width=800,height=800,left=200,top=250,scrollbars=yes,location=no,toolbar=no');
}

function SetFile(formName, id, newFile, postBack)
{
	eval('var theform = document.' + formName + ';');
	popUp.close();
	theform.elements[id].value = newFile;
}

function Confirm_Action(message) {
	var confirmOK = confirm(message)
	if (confirmOK == true)
	{
		return(true);
	}
	else
	{
		return(false);
	}
}


function writemenu(menuname) {
	var d = document.getElementById('f-source-menu');

  d.innerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="500" height="500" >' + 
    '<param name="flash_component" value="VistaVerticalFree.swc">' + 
    '<param name="movie" value="moview.swf">' + 
    '<param name="quality" value="high">' + 
    '<param name="FlashVars" value="flashlet={_subButtonTextColor:#FFFFFF,_subMenuColor:#1E1E1E,_removeSubDelay:500,_mainButtonHeight:26,_subHighlightColor:#999999,mainSoundURL:\'None\',_subFont:\'Trebuchet MS\',_subButtonHeight:23,_menuColor:#131313,clickSoundURL:\'None\',_mainButtonTextColor:#FFFFFF,_menuWidth:100,_mainFontSize:11,subSoundURL:\'None\',_subHlTransparency:50,bg_Pic_URL:\'None\',_minSubWidth:60,_mainFont:\'Trebuchet MS\',_mainButWidthExt:22,_mainHighlightColor:#92DDFA,xml_Path:\''+menuname+'\',_subFontSize:10}">' + 
    '<param name="wmode" value="transparent">' + 
    '</object>';
}

function writebanner(myMovie) {
  var d = document.getElementById('Banner');

  d.innerHTML = '<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="804" height="180" hspace="0" vspace="0">' +
		'<param name="movie" value="' + myMovie + '" />' +
		'<param name="quality" value="high" />' +
    '<param name="wmode" value="opaque">' +
		'<embed src="' + myMovie + '" wmode="opaque" width="804" height="180" hspace="0" vspace="0" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" />' +
		'</object>';
}

