if (window == top)
	{
top.location=home;
	}

function check_form()
	{
error=0;
c=document.cart_count.g_count.value;
c=inc_width=parseInt(c);
var digits = /^[0-9]+$/;
if(!digits.test(document.cart_count.g_count.value))	{alert("Поле может содержать только цифры");error=1;}
if(c<1 && error==0)					{alert('Кол-во не может быть меньше 1 шт.');error=1;}
if(error==0){document.cart_count.submit();}
	}

function scan_key()
	{
t=event.keyCode;
if(t==27){hide_cart();}
if(window.event.ctrlKey && t==13){check_form();return false;}
	}