﻿var DIV_HP_LATEST_CONTENT	= 'hp-latest-info-content';
var URL_RECOMMEND			= 'recommend.php';

var oldDivId = '';
function showHPLatestImage(id, img, model, name, price)
{
	if (oldDivId)
		$('hp-latest-'+ oldDivId).style.border = '3px #f1edd2 solid';
	oldDivId = id;
	var content = '<img src="images/thumbs/'+ img +'" width="100" height="100"/>'+ name +'<br class="clear"/>';
	content += '<div class="price">'+ price +'</div>';
	content += '<form name="cart_quantity" action="product_info.php?products_id='+ id +'&action=add_product" method="post">';
	content += '<fieldset>';
	content += '<input type="hidden" name="products_id" value="'+ id +'"/>';
	content += '<input type="image" class="image" src="includes/languages/english/images/buttons/button_buy_now.gif" border="0" alt="Add to Cart" title=" Add to Cart "/>';
	content += '</fieldset>';
	content += '</form><br/> ';
	content += '<p class="model">ID: '+ model +'</p>';
	$(DIV_HP_LATEST_CONTENT).innerHTML = content;
	$('hp-latest-'+ id).style.border = '3px #d0ac70 solid';
}

function popRecommend(id)
{
	var url = URL_RECOMMEND +'?products_id='+ id;
	var rw = window.open(url, 'Recommend', 'width=300px, height=150px, resizable=1');
	rw.focus();
}