function getPath()
{
	var s = window.location.href.split('/');
	var r = '';

	for(i = 0; i < 4; i++) 
	{
		if ((i == 3) && (s[i] == 'test')) r += s[i] + '/'; 
	  if (i < 3) r += s[i] + '/';
  }
 	return r;
}

function wopen(wurl,wname,w,h)
{
	window.open(wurl,wname,'height='+h+',width='+w+',resizable=1,scrollbars=yes,menubar=no,status=no');
}
function a2c(item, switch2basket)
{
	var cWidth = 300, cHeight = 150;
	var basket_sw = (switch2basket == 1 ? 'yes' : 'no');
	var w = window.open(getPath() + 'add2cart.asp?add=' + item + '&switch2basket=' + basket_sw, 'add2cart', 'width=' + cWidth + ',height=' + cHeight + ',resizable=no,scrollbars=no,menubar=no,status=no,left=' + (screen.width - cWidth) / 2 + ',top=' + (screen.height - cHeight) / 2);
	w.focus();
	return false;
}
function pop(item)
{
	var cWidth = 549, cHeight = 600;
	var w = window.open(getPath() + 'popup/' + item, 'popup' + item, 'width=' + cWidth + ',height=' + cHeight + ',resizable=yes,scrollbars=yes,menubar=no,status=no,left=' + (screen.width - cWidth) / 2 + ',top=' + (screen.height - cHeight) / 2);
	w.focus();
	return false;
}

