function Enlarge(image_loc, img)
{
HTML = "<html><style>body{margin:0px 0px 00px 00px}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+30)'></body></html>"; 
popupImage = window.open('','_blank','toolbar=no,scrollbars=no'); 
popupImage.document.open(); 
popupImage.document.write(HTML); 
popupImage.document.close(); 
}

 
function AvaUuesAknas(page)
{
popupWin = window.open(page , 'open_window',
'scrollbars,dependent,width=648,height=480,left=200,top=75')
}


function Moreinfo(sDestination)
{
popupWin = window.open(sDestination, 'more_info', 'status,scrollbars,dependent,width=635,height=475,left=100,top=75');
}

function unpack_item(item_id)
{
	var item = document.getElementById(item_id);
	if (item != null)
	{
		if (item.style.display == "none")
		{
			item.style.display = "block";
		}
		else
		{
			item.style.display = "none";
		}
	}
}

function pack_item(item_id)
{	
	var item = document.getElementById(item_id);
	if (item != null)
	{
		item.style.display = "none";
	}
}
