function menuderoulant(selection){
window.location=selection.options[selection.selectedIndex].value;
}
function show(arg) {
if(document.getElementById)
   document.getElementById(arg).style.visibility = "visible";
   document.getElementById(arg).style.display = "block";
}
function hide(arg) {
if(document.getElementById)
   document.getElementById(arg).style.visibility = "hidden";
   document.getElementById(arg).style.display = "none";
}
function openURL(sURL) {
opener.document.location = sURL;
} 
 
function work()
{
var rgx= new RegExp(" ", "g");
var v = document.getElementById("sch");
var c = v.value.replace(rgx,"-");
var f = document.getElementById("wakza");
f.action=c+"-film_streaming.html";
f.submit();
}
