function openWindow(aOb,width,height) {
	var url = aOb.getAttribute('href');
	width = width?width:700;
	height = height?height:565;
	var left = parseInt((screen.width - width)/2);
	var top = parseInt((screen.height - height)/2);
	var dsdWindow = window.open('','','left='+left+',top='+top+',width='+width+',height='+height+', toolbar=0, location=0, scrollbars=0, menubar=0, status=0');
	dsdWindow.document.write("<html><head><title>Схема</title></head><body style='background: #000000;'><center><img src=" + url + "></center></body></html>");
	return false;
}

function openWindowResult() {
	var url = 'http://testing-2.cim.by/cart.html';
	width = width?width:700;
	height = height?height:565;
	var left = parseInt((screen.width - width)/2);
	var top = parseInt((screen.height - height)/2);
	var dsdWindow = window.open('','','left='+left+',top='+top+',width='+width+',height='+height+', toolbar=0, location=0, scrollbars=0, menubar=0, status=0');
	dsdWindow.document.write("<html><head><title>Ваше сообщение отправлено</title></head><body style='background: #000000;'><center><p class='p_result'>Ваше сообщение отправлено.</p><p class='p_result_2'>Наши менеджеры свяжутся с вами в течение 12 часов.</p></center></body></html>");
	return false;
}

function openCenteredWindowWriteus(width,height) {
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = 120;
    var windowFeatures = "location=0,width=" + width + ",height=" + height + ",status,resizable,scrollbars=0,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    window.open("/writeus", "subWind", windowFeatures);
    //showModalDialog("/writeus", "2222", "dialogWidth=379px, dialogHeight=540px")    
    return false;
}

function openCenteredWindowWriteus1(width,height) {
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = 120;
    var windowFeatures = "location=0,width=" + width + ",height=" + height + ",status,resizable,scrollbars=0,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    window.open("/writeus/en", "subWind", windowFeatures);
    //showModalDialog("/writeus", "2222", "dialogWidth=379px, dialogHeight=540px")    
    return false;
}


