/*function showGood(prefix)
{
	NewpopupWindow = window.open("/good/" + prefix + "/", "", "width=700,height=500,scrollbars=no,menubar=no,status=no,location=no,fullscreen=no,directories=no,resizable=yes,left=0");

	NewpopupWindow.focus();	
}*/

function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function MM_preloadImages() {
	var d=document; 

	if(d.images){ 
		if(!d.MM_p) d.MM_p=new Array();

		var i,j=d.MM_p.length,a=MM_preloadImages.arguments; 
	
		for(i=0; i<a.length; i++){
			if (a[i].indexOf("#")!=0){ 
				d.MM_p[j]=new Image; 
				d.MM_p[j++].src=a[i];
			}
		}
	}
}

function changeImages(img_name,img_src) {
	document[img_name].src=img_src;
}

function changeCurrency(currency){
	var other_currency = currency=='usd' ? 'rub' : 'usd';

	for (i=0;i<cnt;i++){
		document.getElementById(currency + i).style.display = "block";	
		document.getElementById(other_currency + i).style.display = "none";	
	}

	document.body.focus();
}

function Search(form){

	if(form.search.value==''){alert('Не указано поле для поиска');form.search.focus();return false;}

	form.action = '/shop/?search=' + form.search.value;

	return true;
}

function showImage(image_id){
	document.getElementById('catImg').src = images[image_id];
}