// $Id: popup_image.js,v 1.4.2.1 2006/09/13 14:03:29 max Exp $
function popup_image(type, id, path, max_x, max_y, title) {
	
	
	max_x = parseInt(max_x);
	max_y = parseInt(max_y);

	if (!max_x)
		max_x = 160;
	else
		max_x += 25;
	if (!max_y)
		max_y = 120;
	else
		max_y += 25;

	
	return window.open(xcart_web_dir+'/popup_image.php?type='+type+'&id='+id+'&path='+path+'&title='+title+'&area='+current_area,'images','width='+max_x+',height='+max_y+',toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no,direction=no');
	
}
function changeImage(id,path,width,height) {
	
	document.getElementById("td_product_image").innerHTML = '<a href="javascript: void(0);" onclick="javascript: popup_image(\'D\', \''+id+'\', \''+width+'\', \''+height+'\', \'\');"><img id="product_thumbnail" src="http://www.houseofarearugs.com/images/D/'+path+'" alt="" width="'+width+'" height="'+height+'"></a>';
}
function popimage(id) {
	
	
	window.open("http://www.houseofarearugs.com/images/."+id,"","toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no,direction=no");
}