function bigPicture(pic) {
	var picture = "/gfx/imager/produkter/"+pic+"?s=product_details"
	win = window.open("","Stortbillede","width=750,height=650,scrollbars=1,toolbar=0,menubar=0,location=0,resizable=1");
	win.document.open();
	win.document.writeln("<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>");
	win.document.writeln("<!-- Produced by www.adapt.dk -->");
	win.document.writeln("<html lang='da'><head><title>KJ Værktøj</title>");
	win.document.writeln("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>");
	win.document.writeln("</head><body onclick='window.close();' style='cursor:pointer;'>");
	win.document.writeln("<img src='"+picture+"' border='0' alt=''>");
	win.document.writeln("</body></html>")
	win.document.close();
	win.focus();
	return false
}

function checkCartCount(form) {
	for(i=0; i<form.elements.length; i++) {
		if (form.elements[i].name.indexOf('cnt_') == 0) {
			if (form.elements[i].value) return true;
		}
	}
	return false;
}
