function getCur(EUR, GBP, AUD) {
	result = '<div style="width:275px; border:1px solid #1f395a; font-family:Verdana; font-size:7.5pt; color:#1f395a; padding:7px; text-align:justify;"><div style="color:#FFFFFF; background-color:#1f395a; text-align:center; font-size:9pt; font-weight:bold; padding:4px;">Currency Conversion</div><br /><div style="padding:7px; background-color:#F5F8FC; border:1px solid #cccccc;">Displayed rates are only for informational purposes and do not reflect on the actual rates you may be charged by the financial institution handling your transaction.<br /><br /><table width="95%" border="0" align="center" cellpadding="3" cellspacing="0" bgcolor="#FFFFFF" style="font-size:9pt; border:2px solid #1f395a;"><tr><td width="48%" align="left" style="border-bottom:1px solid #CCCCCC"><strong>Euro</strong></td><td width="52%" align="right" style="border-bottom:1px solid #CCCCCC">&euro;'+EUR+'</td></tr><tr><td align="left" style="border-bottom:1px solid #CCCCCC"><strong>GB Pound</strong></td><td align="right" style="border-bottom:1px solid #CCCCCC">&pound;'+GBP+'</td></tr><tr><td align="left"><strong>AU $</strong></td><td align="right">$'+AUD+'</td></tr></table><br /><span style="color:#bc4231; font-size:7pt; text-align:left; font-weight:bold;">Prestige Time, LLC accepts payment in US dollars only.<br /><br />Rates do not include taxes, duties, shipping, insurance, or any other expenses associated with the purchase</span></div></div>';
	return result;
}
function loadPost(url, params, update) {
	var http = null;
	if (window.XMLHttpRequest)
  		http = new XMLHttpRequest();
	else
  		if (window.ActiveXObject)
     		http = new ActiveXObject('MSXML2.XMLHTTP.3.0');
	http.open("POST", url, true);
	http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	http.setRequestHeader("Content-length", params.length);
	http.setRequestHeader("Connection", "close");
	http.onreadystatechange = function() {
		if(http.readyState == 4 && http.status == 200) {
			if(isNaN(http.responseText.replace(',','')))
				cur = http.responseText;
			else if(!isNaN(http.responseText))
				document.getElementById('compare_count').innerHTML = "(" + http.responseText + ")";
		}
	}
	http.send(params);
}
function add_to_compare(images_dir, path, item_id) {
	if(document.getElementById('compare_count').innerHTML == "(4)") {
		alert("Limit four items for compare.\nTo add another item please remove at least one from the compare cart.");
		return '<b>Item NOT added to Compare.</b>';	
	}
	document['compare watch'].src=images_dir+'Compare_checked.gif';
	document.getElementById('compare watch a').onmouseover = function(){ return false;};
	document.getElementById('compare watch a').onmouseout = function(){ return false;};
	loadPost(path+'/servers/add_to_compare.php', 'item_id='+item_id, true);
	return '<b>Item added to Compare.<b>';
}
/*
function getBigPic(path){
	//{$smarty.const.SITE_WATCH_DIR}{$pic_big}
	return '<img src="'+path+'">';
}
*/