function doNothing(){}

function send_category(p_nCatID,p_sLang)
{
	switch(p_sLang)
	{
		case "dutch":
			document.frmOnlineShop.action = 'https://www.crashrecoverysystem.com/crs_shop/index.php?lang=NLD&menu=category_administration&action=select_products';
		break;
		case "german":
			document.frmOnlineShop.action = 'https://www.crashrecoverysystem.com/crs_shop/index.php?lang=GER&menu=category_administration&action=select_products';		
		break;
		case "english":
		case "default":
			document.frmOnlineShop.action = 'https://www.crashrecoverysystem.com/crs_shop/index.php?lang=ENU&menu=category_administration&action=select_products';	
		break;
	}
	
	document.frmOnlineShop.sel_category.value = p_nCatID;
	document.frmOnlineShop.submit();
}
