function go(theURL,w_img) {window.open(theURL,'_blank',w_img);}

function add_to_cart(base,id){
//alert('asd');
	if(document.getElementById("col").value)
		{
		var col = document.getElementById("col").value;
		}
	else
		{
		
		var col=1;
		}
	if(confirm('Добавить товар в корзину?')){
	//	document.getElementById("col").value="1";
		document.getElementById("cart_div").style.top = '132px';
		document.getElementById("cart_div").style.left = '357px';
		document.getElementById("cart_div").style.display = 'block';
		choosedColor = document.getElementById("choosed_color");
		var href_color_part = '';
		if(choosedColor) 
			{
			if(choosedColor.value) 
				{
				href_color_part = '&color_img=' + choosedColor.value;
				}
			}
		
	//	alert('/add_cart.php?base='+base+'&id='+id+'&col='+col+href_color_part);
		makeRequest('/add_cart.php?base='+base+'&id='+id+'&col='+col+href_color_part,'cart_result','');

	}
}

function show_cart(){

	document.getElementById("cart_div").style.top = '132px';
	document.getElementById("cart_div").style.left = '357px';
	if(document.getElementById("cart_div").style.display == 'block') document.getElementById("cart_div").style.display = 'none';
	else document.getElementById("cart_div").style.display = 'block';
}

function selectpanel(param)
{
        document.getElementById('panel1').className = "default";
	    document.getElementById('panel2').className = "default";
	    document.getElementById('panel3').className = "default";
	    document.getElementById('panel4').className = "default";
	    document.getElementById('panel5').className = "default";
	    document.getElementById('panel6').className = "default";
	    document.getElementById('panel7').className = "default";
	    document.getElementById('panel8').className = "default";
	    document.getElementById('panel'+param).className = "active";

        document.getElementById('offerspanel1').style.display = "none";
        document.getElementById('offerspanel2').style.display = "none";
        document.getElementById('offerspanel3').style.display = "none";
        document.getElementById('offerspanel4').style.display = "none";
        document.getElementById('offerspanel5').style.display = "none";
        document.getElementById('offerspanel6').style.display = "none";
        document.getElementById('offerspanel7').style.display = "none";
        document.getElementById('offerspanel8').style.display = "none";
	    document.getElementById('offerspanel'+param).style.display = "block";
}

function ttt()
	{
	
	alert("asd");
	}
