function addCart(tm_id)
{
	$('CartTmId').value = tm_id;
	sendAddCart();
}
function sendAddCart() 
{ 
    cartWindow = window.open("","cart","scrollbars=yes,resizable=yes,width=850,height=550"); 
    var a = window.setTimeout("$('formCart').submit()",150);
    cartWindow.focus();
} 