function sel_photo_img(SelImgHref) {
	var MainImg=document.getElementById('main-img');
	var SelImg=SelImgHref.getElementsByTagName('img').item(0);
	var tmp=MainImg.src;
	var tmp2=SelImg.src;
	var re=new RegExp('/2/', '');
	tmp=tmp.replace(re, "/3/");
	var re=new RegExp('/3/', '');
	tmp2=tmp2.replace(re, '/2/');
	SelImg.src=tmp;
	tmp=SelImg.alt;
	SelImg.alt=MainImg.alt;
	MainImg.src=tmp2;
	MainImg.alt=tmp;
	return false;
}
function open_big_main_photo() {
	var MainImg=document.getElementById('main-img');
	var tmp=MainImg.src;
	var re=new RegExp('/2/', '');
	tmp=tmp.replace(re, "/1/");
	tmp=tmp.replace('+', '%2B');
	var w=window.open('/catalog/product/photo/?fl='+escape(tmp), 'bigimg', 'toolbar=0,location=0,menubar=0,statusbar=no,resizable=yes,scrollbars=no,width='+MainImg.width+',height='+MainImg.height);
	return false;
}

function dictionary_popup(id) {
	var w=window.open('/dictionary-word-'+id+'.html', 'dictionary', 'toolbar=0,location=0,menubar=0,statusbar=0,resizable=0,scrollbars=1,width=550,height=400');
	return false;
}
function compare_popup() {
	var w=window.open('/catalog/compare.html', 'dictionary', 'toolbar=0,location=0,menubar=0,statusbar=yes,resizable=yes,scrollbars=yes,width=650,height=800');
	return false;
}

