var wndAdvInfo = 0;

function showInfo(aType, aModel) {
	var type = aType || '';
	var model = aModel || '';
	var city = __CITY || '';
	if(wndAdvInfo != 0) wndAdvInfo.close();
	var wndWidth = 500;
	var wndHeight = 350;
	var wndX = screen.availWidth / 2 - wndWidth / 2 - 20;
	var wndY = screen.availHeight / 2 - wndHeight / 2 - 30;
	var options = "toolbar=no, location=no, directories=no, status=no, menubar=no, resizable=no, scrolling=auto, scrollbars=0, width=" + wndWidth + ", height=" + wndHeight +", left=" + wndX + ", top=" + wndY;
	wndAdvInfo = window.open("_blank", "startup", options);
	wndAdvInfo.location.href="http://www.380v.ru/advinfo/?type=" + type + "&model=" + model + "&city=" + city;
	wndAdvInfo.focus();
}

