images = new Array();
currentindex = 2;
function preload(url) {   
	
   if (document.images) {                                             
      var i = images.length;                                            
      images[i] = new Image();                                          
        
      images[i].src = url;                                              
   }                                                                  
}  


function changeimage(){
	currentindex++;
	//alert(currentindex);
	if(currentindex == images.length)currentindex=0;
	//document.images.imgtop.src = images[currentindex].src;
	//alert("url('"+images[currentindex].src+"')");
	document.getElementById('top').style.backgroundImage="url('"+images[currentindex].src+"')";
	setTimeout('changeimage()',4500);   	
}



function openLink(arg,div){
	//additional = "&nick="+nick+"&pass="+pass;
	//arg += additional;
	//alert(arg);
	registerRequest("index.php?get_arg="+arg,div);
}

var overmenu = null;
var oversubmenu = null;

function overMenu(elt){
	overmenu = elt;
	//elt.style.backgroundColor = "#dedede";
	//elt.style.color = "#009900";
}

function outMenu(elt){
	//if(elt.id!=selected_id){
		//elt.style.backgroundColor = "#f4f4f4";
		//elt.style.color = "#000000";
		overmenu=null;
	//}
}

function overSubMenu(elt){
	oversubmenu = elt;
	//elt.style.color = "#009900";
	//elt.style.backgroundColor = "#dedede";
}
function outSubMenu(elt){
	//if(elt.id!=selected_sub_id){
		//elt.style.backgroundColor = "#f4f4f4";
		//elt.style.color = "#000000";
		oversubmenu=null;
	//}
}

function openMenu(arg){
	document.location="./service_"+arg+".html";
}

var lat = 49.825673;
var lng = 18.971088;
var zoom=15; 


function loadMap() { 
	if (GBrowserIsCompatible()) { 
		var map = new GMap2(document.getElementById("map")); 
		var pom = new GLatLng(lat, lng);	 
		map.setCenter(pom, zoom); 
 //	map.showMapBlowup(pom);
 	
	

		map.openInfoWindowHtml(pom,"<b>Belse Sp. z o.o.</b><br><br>ul. Szyprów 17<br>43-382 Bielsko Biała<br><br>Telefon: 	033 810 07 18<br>Faks: 	033 810 07 20<br><br> e-mail: <a href=\"mailto:biuro@belse.com.pl\">biuro@belse.com.pl</a>");
	} 
} 


function processCourseRegSelect(){
	document.forms[1].elements[0].value="courseregsel";
	document.forms[1].submit();
}

function openTheClip(id){
		//alert(id);
	    s = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\"1\" height=\"1\" id=\"baner0\" align=\"middle\">";
		s +="<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
			s +="<param name=\"allowFullScreen\" value=\"false\" />";
			s +="<param name=\"movie\" value=\"./gfx/comm.swf?pid="+id+"\" />";
			s +="<param name=\"quality\" value=\"high\" />";
			s +="<param name=\"bgcolor\" value=\"#ffffff\" />";
			s +="<embed src=\"./gfx/comm.swf?pid="+id+"\" quality=\"high\" bgcolor=\"#ffffff\" width=\"1\" height=\"1\" name=\"comm\" align=\"middle\" allowScriptAccess=\"sameDomain\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />";
			s += "</object>";
			//alert(s);
			writeToBlock("communicator",s);
	}