function displayQuickLyteBox(title,html) {
	
	tophtml = 
		"<div id='top' style='text-align: center; float: none;  margin-top: 20px; margin-bottom: 10px;'>" +
		"<div style='float: none; margin-top: 20px'><span style='font-weight: bold'>" + title + "&nbsp;</span>" +
		"</div>" + 
		"</div>";
	bottomhtml = "<div id='top' style='float: none;  margin-top: 10px;'>" +
		"<div style='float: none; text-align: center;  margin-bottom: 20px; '>" +  
		"<a style='color: #b0b0b0; font-size: 20px; font-weight: normal' href='#' onclick='deleteLyteBox(); return false'>close</a>" + 
		"</div>" +
		"</div>";
	midhtml = "<div id='mid' style='float: none; text-align: left;'>" + html + "</div>";
	
	createLyteBox("order_details", "<div style='text-align: center; background-color: #ffffff; border: solid 2px #e6640e; padding-left: 30px; padding-right: 30px'>" + 
		tophtml + midhtml + bottomhtml +
		"</div>",
		30,
		null,
		"overlay-2.png");
}

