// JavaScript Document
imageFiles = new Array("pics/1_3.gif",
					"pics/1_3_on.gif",
					"pics/1_4.gif",
					"pics/1_4_on.gif",
					"pics/1_5.gif",
					"pics/1_5_on.gif");
imageObjects = new Array(imageFiles.length);
for (var i=0;i<imageFiles.length; i++)
	{
	imageObjects[i] = new Image(27,39);
	imageObjects[i].src = imageFiles[i];
	}
function setImage(name,image)
	{
	document.images[name].src = image;
	}
function showText(id){
     document.getElementById(id).style.display=(document.getElementById(id).style.display=='block')?'none':'block';
	 document.getElementById(id+'_1').style.display=(document.getElementById(id+'_1').style.display=='none')?'block':'none';
}
function openWin(rel,w,h)
{
	if(!w) w=620;
	if(!h) h=420;
	
	w -= 40;
	h -= 40;

	$('#imageBox').css(
  	{
	    backgroundColor: "#CCC",
	    width: w + 'px',
	    height: h + 'px',
	    position: 'absolute',
	    backgroundImage: 'url("' + rel + '")',
	    top: document.body.scrollTop + 145 + 'px',
	    left: '300px'
	});
	
	
	$('#imageBox').show(1000);
	
	$('#imageBox').click(function()
	{
		$(this).hide();
	});
	return;
	
//	if (w>h) {var l=150;var t=50} else {var t=0;var l=300}
//	window.open("","","location=no,toolbar=no,titlebar=no,menubar=no,width="+w+",height="+h+",left="+l+",top="+t+"").document.write("<html><head><title>Увеличение фотографии</title></head><body onclick='window.close()' onblur='window.close()' bgcolor='#000000' ><center><img src='"+rel+"'></center></body></html>");
//	return true;
}
