var new_window = function (url, width, height) {
	var Browser = function () {
		window.open(url, 
			url+" "+width+" "+height, 
			"width="+width+",height="+height+",resizable=yes,scrollbars=yes");
	};
	var Msie = function () {
		window.open(url, 
			"window_random_"+Math.floor(Math.random() * 100000000), 
			"width="+width+",height="+height+",resizable=yes,scrollbars=yes");
	};
	
	// определяем -- чем пользуется клиент для открытия web
	if(jQuery.browser.msie && (
		jQuery.browser.version == "6.0" ||
		jQuery.browser.version == "7.0" ||
		jQuery.browser.version == "8.0"))
	{
		// клиент пользуется Эксплорером
		Msie();
	}
	else {
		// клиент пользуется браузером
		Browser();
	}
};

