<!--

function printer_view(p_speciality, p_company_name, p_tel_no, p_skin)
{
	var printer_view = window.open('', 'holiday_details', 'width=720,height=640,scrollbars=yes,location=no,menubar=yes,status=yes,titlebar=yes,toolbar=no,resizable=yes');
	var details = document.getElementById('holiday-detail').innerHTML;

	details = details.replace('Request details', '');

	printer_view.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><link href="asset/css/mint/shared/main.css.php?skin=' + p_skin + '" rel="stylesheet" type="text/css" /><title>Holiday Details</title></head><body>');
	printer_view.document.writeln('<div style="width:90%;margin-left:auto;margin-right:auto;padding:10px;background-color:#FFFFFF;">');
	printer_view.document.writeln("<h1 class=\"heading\">" + p_speciality + " (" + p_company_name + ") - Call us on " + p_tel_no + "</h1>");
	printer_view.document.writeln(details);
	printer_view.document.writeln('</div>');
	printer_view.document.writeln('</body></html>');

	printer_view.document.close();

	printer_view.print();

}

var imgWindow;
var newImage;

function openImage(p_img)
{
	var imgSrc    = p_img.src;
	imgSrc = imgSrc.replace(/.thumb/,"");

	newImage = new Image;
	newImage.src = imgSrc;

	newImage.onload = imageDisplay;
}

function imageDisplay()
{
	var imgWidth  = newImage.width;
	var imgHeight = newImage.height;

	imgWidth  += 20;
	imgHeight += 20;

	if (imgWindow)
		imgWindow.close();

	imgWindow = window.open(newImage.src, 'imageView', 'width=' + imgWidth + ',height=' + imgHeight + ',scrollbars=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,resizable=yes');
}

function add_bookmark(p_url, p_title)
{
	var mBookmarkUrl   = p_url;
	var mBookmarkTitle = p_title;

	if (document.all)
		window.external.AddFavorite(mBookmarkUrl,mBookmarkTitle);
	else if (window.sidebar)
		window.sidebar.addPanel(mBookmarkTitle, mBookmarkUrl,"");
	else if (window.opera && window.print)
		return true;
}


// -->
