home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2004 April
/
PCWorld_2004-04_cd.bin
/
software
/
temacd
/
webman
/
wmsetup.msi
/
Instal01.cab
/
_E85B51DAB52A4AB689103C5F1B06CC66
< prev
next >
Wrap
Text File
|
2002-10-31
|
1KB
|
25 lines
// *****************************************************************
//
// 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");
}