﻿/**
* Search block data
*/
function BringPictureToCountry(countryId, totalPrices, numPic)
{
    xmlHttp=GetXmlHttpObject();
    if (xmlHttp==null)
    {
        alert ("Browser does not support HTTP Request");
        return;
    }
    popups.loginPopup.create('1');
	var url=rootLink+"/includes/ajax/main_shopcart.php?";
    url=url+"ajxid="+Math.random();
    url=url+"&do=movetocountry";
    url=url+"&counid="+countryId;
    url=url+"&totalprices="+totalPrices;
    url=url+"&numpic="+numPic;
    xmlHttp.onreadystatechange=MainShopCartResult;
    xmlHttp.open("GET",url,true);
    xmlHttp.send(null);
}
/**
* Return result
*/
function MainShopCartResult()
{
	//var moveto = document.getElementById('main_shopcart_moveto_prices');
	//var total = document.getElementById('main_shopcart_total_prices');
    if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
    {
        //alert(xmlHttp.responseText);
        //var temp = new Array();
		//temp = xmlHttp.responseText.split('|');
		//moveto.innerHTML = temp[0]+'$';
		//total.innerHTML = temp[1]+'$';
		popups.loginPopup.destroy('');
    }
}
