
function popUpHTML(product_id, url, page) {
	window.open("product_details.jsp?id=" + product_id + "&url=" + url + "&page=" + page, "", "width=450,height=500,menubar=no,scrollbars=no");
}

function popUpAuctionHTML(auction_id, url, page){
	window.open("auction_details.jsp?id=" + auction_id + "&url=" + url + "&page=" + page, "", "width=450,height=500,menubar=no,scrollbars=no");
}

function setCalText(text) {
	var cal_text = document.getElementById("cal_text");
	cal_text.innerHTML = text;
}
function setCalDefaultText() {
	var cal_text = document.getElementById("cal_text");
	cal_text.innerHTML = "Click on Highlighted Day for Details";
}

function popUpShipping() {
  thePage = "shipping_cost.jsp";
  my_window = window.open(thePage,'my_window','width=625,height=500,menubar=no,scrollbars=yes');
}