function SetHeight() {
	var left_h = document.getElementById('left_container').offsetHeight;
	var cent_h = document.getElementById('center_container_padding').offsetHeight;
	cent_style_h = document.getElementById('center_container_padding');
	
	browserName = navigator.appName;
	ie4up = (browserName.indexOf("Microsoft") >= 0);
	if(ie4up){
		if(cent_h < left_h){
		cent_style_h.style.height = left_h + "px";
		}
	}
	if(!ie4up){
		if(cent_h < left_h){
		cent_style_h.style.height = left_h - 207 + "px";
		}
	}
	
	
}
window.onload = SetHeight;
window.onresize = SetHeight;

function new_wind(){
var wind = window.open("", "Help", "scrollbars=yes,menubar,toolbar=no,location=no,status=yes,resizable=yes, height=500, width=500, left=100,top=100");
wind.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><link rel="stylesheet" href="/css/styles.css" type="text/css"><link rel="stylesheet" href="/css/inner.css" type="text/css"><link rel="stylesheet" href="/css/print.css" type="text/css"></head><body><div id="no_print">Для печати заказа нажмите сочетание клавищ <b>"Ctrl + p"</b></div>' + document.getElementById('txt_top').innerHTML + document.getElementById('tov_desc').innerHTML + '</body></html>');
wind.focus();
}

function new_card_wind(){
var wind = window.open("", "Help", "scrollbars=yes,menubar,toolbar=no,location=no,status=yes,resizable=yes, height=500, width=900, left=100,top=100");
wind.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><link rel="stylesheet" href="/css/styles.css" type="text/css"><link rel="stylesheet" href="/css/inner.css" type="text/css"><link rel="stylesheet" href="/css/print.css" type="text/css"></head><body><div id="no_print">Для печати страницы нажмите сочетание клавищ <b>"Ctrl + p"</b></div>' + document.getElementById('center_container_padding').innerHTML + '</body></html>');
wind.focus();
}
