// *****************************************************************
//
//	Website Manager Javascript functions
//	Copyright (c) Invicta Trading & Promotion HB 2002
//
// *****************************************************************

function wm_playbgs(szsrc,szvol,szbal,szloop) {

// Plays background sound in two different ways, depending on the browser

   if(navigator.userAgent.indexOf("MSIE") != -1)
      document.writeln('<BGSOUND BALANCE="'+szbal+'" VOLUME="'+szvol+'" LOOP="'+szloop+'" SRC="'+szsrc+'">');
   else {
      document.write('<EMBED SRC="'+szsrc+'" AUTOSTART="true" HIDDEN="true" BALANCE="'+szbal+'" LOOP="'+szloop+'" VOLUME="'+szvol+'"></EMBED>');
   }

}

// Open file in a new window

function opn_wndw(szurl,szwidth,szheight,blscroll,blsizable,szcaption) {
	window.open(szurl,szcaption,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + blscroll + ",resizable=" + blsizable + ",copyhistory=yes,width=" + szwidth + ",height=" + szheight + ",top=0,left=0");
}

