var WinOpen;

function change_this(id,img){

	document.getElementById(id).src="img/"+img;

}

function my_go (target){
	if(target!=undefined && target!="" && target!=0){
		location.href=target;
	}
}

function active_this(id){

	sub_menu="sub_menu_"+id;
	document.getElementById(sub_menu).style.display="block";

}

function deactive_this(id,time){

	hide_sub_menu=setTimeout("hide_now("+id+")",time);

}

function hide_now(id){

	sub_menu="sub_menu_"+id;
	document.getElementById(sub_menu).style.display="none";

}

function OpenSubMenu(this_id,id){
	if(document.getElementById(id).className=="closed_sub_menu"){
		document.getElementById(id).className="opened_sub_menu";
		document.getElementById(this_id).className="active_main_button";
	}else{
		document.getElementById(id).className="closed_sub_menu";
		document.getElementById(this_id).className="main_button";
	}
}

function show_img(title, img_src, img_width, img_height) {
 	height = parseInt(img_height) + 30;
 	width = parseInt(img_width) + 30;

	p_top=(screen.height-img_height)/2-30;
	p_left=(screen.width-img_width)/2-30;

    if(WinOpen != null){
     	  WinOpen.close();
          WinOpen  =  window.open("", "Foto", "closed=yes, toolbar=no, location=no, top="+p_top+", left="+p_left+", directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width="+width+", height="+height+"");
    }else{
          WinOpen  =  window.open("", "Foto", "closed=yes, toolbar=no, location=no, top="+p_top+", left="+p_left+", directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width="+width+", height="+height+"");
}
    if(WinOpen != null){
          WinOpen  =  window.open("", "Foto", "closed=yes, toolbar=no, location=no, top="+p_top+", left="+p_left+", directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width="+width+", height="+height+"");
          WinOpen.document.write("<html><head><title>Фабрика "+title+"</title>");
          WinOpen.document.write("<SCRIPT language=javascript>function cl() { close(); }</SCRIPT></head>");
          WinOpen.document.write("<body style='padding:0; margin:0;' bgcolor='#000000'><table width='100%' height='100%'><tr><td align='center' style='vertical-align:middle;'><img src=\"http://www.puntini.ru/img/BIG/"+img_src+".jpg\" style='cursor:pointer;' alt=\"Закрыть\" onClick=\"cl()\";></td></tr></table></body></html>");
    }

return WinOpen;

}
