function popup_window( id, width, height ) {
	if (!width) width = 900;
	if (!height) height = 800;
	wnd = window.open( "/prod_popup.php?id=" + id, "_blank", "width="+width+",height="+height+",status=1,toolbar=0,resizable=1,scrollbars=1,menubar=1");
	wnd.focus();
}

function popup_fvideo( id, width, height ) {
	if (!width) width = 900;
	if (!height) height = 800;
	wnd = window.open( "/images/products/fvideo/fvideo_popup.php?id=" + id, "_blank", "width="+width+",height="+height+",status=1,toolbar=0,resizable=1,scrollbars=1,menubar=1");
	wnd.focus();
}

function popup_blocks_fvideo( id, width, height ) {
	if (!width) width = 900;
	if (!height) height = 800;
	wnd = window.open( "/images/blocks/fvideo/fvideo_popup.php?id=" + id, "_blank", "width="+width+",height="+height+",status=1,toolbar=0,resizable=1,scrollbars=1,menubar=1");
	wnd.focus();
}

var cur_pic_id = "add1";
 
function load_pic( url, pic, type )
{
	if( document.getElementById("curpic") )
	{
	}
	else
	{
		if( document.getElementById("bn") )
		{
			document.getElementById("bn").innerHTML = "<img id='curpic' src='"+url+"' border='0' />";
		}
	}
	
	var p = document.getElementById("curpic");
	p.src = url;
 
	pic.className = "active";
 
	var pre = document.getElementById(cur_pic_id);
	pre.className = "links";
 
	cur_pic_id = pic.id; 
}

$(document).ready(function () {
  var prpic = $('.popf');
  if (prpic.length > 0) {
    prpic.lightBox({
      fixedNavigation: true,
      overlayBgColor: '#000',
      overlayOpacity: 0.3,
      imageLoading: '/images/loading.gif',
      imageBtnClose: '/images/close.png',
      imageBtnPrev: '/images/left.png',
      imageBtnNext: '/images/right.png',
      containerResizeSpeed: 350
    });
  }
});

