function change_image(img_path,x) {
	var image = document.getElementById('product_thumbnail2')
  image.src = '/i.php?ws=290&hs=290&src=' + img_path;
	
  /*
  if(x<=290) {
		//document.getElementById('product_thumbnail').width = x;
		if(y>380)
			document.getElementById('product_thumbnail').height = '380';
	}	
	else {
		//document.getElementById('product_thumbnail').width = x;
		//document.getElementById('product_thumbnail').height = y;
	}
	*/
	var browserName=navigator.appName;
	if (browserName=="Microsoft Internet Explorer") {
		var el = document.getElementById('pop_up_link');
		el.onclick = function() {window.open(img_path)};
	}
	else
		document.getElementById('pop_up_link').attributes['onclick'].value = "javascript:hideReferer('"+img_path+"');";
		document.getElementById('larger_view').attributes['onclick'].value = "javascript:hideReferer('"+img_path+"');";
}