// JScript File
function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != "none" ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}

function switchImg(obj, img) {
	var el = document.getElementById(obj);
	var my_img = img;
	el.src = my_img;
}

function openWindow(img_name, title) {
    window.open('openwin.aspx?img='+ img_name + '&title=' + title, 'powiekszenie', 'toolbar=0, location=0, menubar=0, resizable=no, scrollbars=0, fullscreen=0, status=0, width=940, height=720');
}

function onLoadPage()
{
  setContentData() ;
}

function setContentData(data) 
{ 
  if (data!=null) 
    _viewBasketContent = data;
  var _y = document.getElementById('koszykContent');   
  if (_y)
    _y.innerHTML = _viewBasketContent; 
} 


