// JavaScript Document
// <meta http-equiv="Content-Type" content="text/html; charset=windows-1251">

function PopupPic(sPicURL) { 
     window.open( "/bg/popup.html?"+sPicURL, "",  
     "resizable=1,HEIGHT=200,WIDTH=200, left=3, top=5"); 
}

function swap_img(img_src) {
  var obj = document.getElementById('konteiner');
	obj.src = img_src;
}

function sh_div(what) {
	 var i=0;
	 var coll = [];
	 while (document.getElementById('d'+ i)) {
	  coll[i] = document.getElementById('d'+ i);
		i++;
	 }
 obj = document.getElementById(what);
 var i=0;
 if (obj.className == 'off') {
	 while (coll[i]) {
		coll[i].className = 'off';
		i++;
		} 
	obj.className = 'on';
 } else {
	obj.className = 'off';
 }
}


function openWindow(url, name) {
  popupWin = window.open(url, name, 'scrollbars=yes,resizable=yes,status=no,personal=no,menu=no,location=no,toolbar=no,left=20,top=20,width=770,height=500')
}




