//var cat_top = '<div id="active_catalog_item"><div id="active_catalog_item_header"><span style="position: relative; left: -94px; top: 22px; text-decoration: underline; color: #D6D2D3;"><span style="color: #359A4A;">&nbsp;&nbsp;&nbsp;&nbsp;'
var cat_top = '<div id="active_catalog_item"><div id="active_catalog_item_header"><span style="position: absolute; margin-top: 22px; margin-left: 15px; text-decoration: underline; color: #D6D2D3;"><span style="color: #359A4A;">&nbsp;&nbsp;&nbsp;&nbsp;'
var cat_center = '</span></span></div><div id="catalog_item_short_desctiption">'
var cat_bottom = '</div></div>'

var current_item_href
var current_item_id = null
var current_item_title
var current_item_content

function show_cat_item(title, content)
{

	/*
	if (current_item_id)
	{
		document.getElementById(current_item_id).innerHTML = current_item_href
	}
    */
	//current_item_id = parent_item
	//current_item_title = title
	//current_item_content = content

	var container = document.getElementById("catalog_item_small_descr")

	//current_item_href = par_elem.innerHTML	container.innerHTML = cat_top + title + cat_center + content + cat_bottom
}

function open_item(cat_code)
{	window.location = "index.php?cat_code=" + cat_code}

function show_big_image(name)
{	mywin=window.open('img','img',['toolbar=0,status=0,resizable=1,width=601,height=600']);
 	//mywin.moveTo(130,130);
  	mywin.document.write("<html><head>");
   	mywin.document.write("<title>Эксклюзивный дистрибьютор в Казахстане</title>");
    mywin.document.write("</head>");
    mywin.document.write("<body align=center style='margin-top:0px; margin-right:0px; margin-bottom:0px; margin-left:0px; background-color: #fff;'>");
    mywin.document.write("<img src='" + name + "' alt='' border='0' />");
    mywin.document.write("</body>");
    mywin.document.write("</html>");}


function open_window(link,w,h) {
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
	newWin = window.open(link,'newWin',win);
};