function basket(ID1, ID2) {
if (
(navigator.userAgent.toLowerCase().indexOf("msie")>0) &&
(navigator.userAgent.toLowerCase().indexOf("opera")==-1)
) {
	var uaction = window.showModalDialog(
		"/little_basket_add_"+ID1+"_"+ID2+"_1.html",
		"",
		"dialogHeight: 500px; dialogWidth: 500px; dialogTop: 150px; dialogLeft: 150px; center: Yes; help: No; resizable: No; status: No;"
		);
	switch (uaction){
		case "":
			// do nothing
			return false;
			break;
		default:
			if (uaction.length>0) {
				// call user location
				document.location = uaction;
				return false;
				};
			break;
		};
	};
// !ie || bad uaction; call big basket
return true;
}
