<!-- Begin

// ********** Screensaver Part 1 **********
// Realised by apacheJeff
// www.huntingground.freeserve.co.uk
Timeout=60000 // delay for effect
Timer=""

function oStatic() {
clearTimeout(Timer)
if(timerRunning == true||blurred==1){ // if win1 opened or opener is blurred, return
return
}
timerRunning = true
win1=window.open("Beauty-Salon-Cosmetics-Israel/ScreenSaverPromise/ScreenSaverPromise.html",'','fullscreen') // if win1 not opened, open win1
/* win1=window.open("Info/ScreenSaverPromise/ScreenSaverPromise.html",'','fullscreen') // if win1 not opened, open win1 */
Timer=setTimeout("oStatic()",Timeout) // run function oStatic after delay
}

opened=0 // win1 not opened

function oActive(){
clearTimeout(Timer)
if(opened==1){return} // if win1 opened, return
timerRunning = false
Timer=setTimeout("oStatic()",Timeout) // if win1 not opened run function oStatic after delay
}

document.onmousemove=oActive // detect mouse movement
document.onmousedown=oActive // detect if button pressed
document.onkeypress=oActive // detect if key press

setTimeout("oActive()",1000) // start

//  End -->