function getcardsbyprice(obj,cat,col,fea,style)
	{		
	         if(cat==0){cat="";}
			 if(col==0){col="";}
			 if(fea==0){fea="";}
			 if(style==0){style="";}
   			var oXmlHttp;
			if (window.XMLHttpRequest)
			{// code for IE7+, Firefox, Chrome, Opera, Safari			
			oXmlHttp=new XMLHttpRequest();
			}
			else
			{// code for IE6, IE5			
			oXmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}	

            oXmlHttp.open("get","sortcards.php?id="+obj.value,true);
            oXmlHttp.onreadystatechange = function () {
                if (oXmlHttp.readyState == 4) {
                   if (oXmlHttp.status == 200) {
					  //	alert(oXmlHttp.responseText);
						window.location.href="index.php?category="+encode64(cat)+"&color="+encode64(col)+"&style="+encode64(style)+"&feature="+encode64(fea)+"&price="+obj.value;
                       // document.getElementById('dd_subcat').innerHTML=oXmlHttp.responseText;						
						}
					}
				}
			 oXmlHttp.send(null);	 
	}
	

function encode64(input) {
	 var keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";

	var output = new String();
	var chr1, chr2, chr3;
	var enc1, enc2, enc3, enc4;
	var i = 0;

	while (i < input.length) {
		chr1 = input.charCodeAt(i++);
		chr2 = input.charCodeAt(i++);
		chr3 = input.charCodeAt(i++);

		enc1 = chr1 >> 2;
		enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
		enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
		enc4 = chr3 & 63;

		if (isNaN(chr2)) {
			enc3 = enc4 = 64;
		} else if (isNaN(chr3)) {
			enc4 = 64;
		}

		output.append(keyStr.charAt(enc1) + keyStr.charAt(enc2) + keyStr.charAt(enc3) + keyStr.charAt(enc4));
   }
   
   return output.toString();
}

 
