
function ChangeBasketN()
{
var wc=parseInt((screen.availWidth-200)/2); 
var hc=parseInt((screen.availHeight-200)/2); 
myWin= window.open ("", "window",
    "width=200,height=200,top="+hc+",left="+wc+",resizable=0,toolbar=0,location=0,status=0,scrollbars=0");
myWin.document.open();
myWin.document.write('<html><head><meta http-equiv="content-type" content="text/html; charset=windows-1251">');
myWin.document.writeln('<title> Интернет-магазин </title>');
myWin.document.writeln('<br><h5 align="center">Товар добавлен в корзину</h5>');
myWin.document.writeln('<h5 align="center">Для отправки заказа перейдите на страницу <br> <a href=javascript:window.close();window.opener.location="/inf/basket/";>Ваша корзина</a></h5>');
myWin.document.writeln('<h5 align="center"><a href=javascript:window.close();>OK</a></h5>');
myWin.document.close();
}

function ChangeDomain(objSelect)
{
var objOpt = objSelect.options[objSelect.selectedIndex]; 
window.open(objOpt.value);

}
