var pdfPopup = {};

pdfPopup.show = function (file)
{
	$('pdf-download-form').style.display 			= 'block';
	// Set the parent container to relative so the block will be kept inside
	// the page_content_txt.
	$('page_content_txt').style.position 			= 'relative';
	$('pdf-download-form').style.position 			= 'absolute';
	$('pdf-download-form').style.bottom 			= '50px';
	$('pdf-download-form').style.left				= '150px';
	$('pdf-download-form').style.height 			= '140px';
	$('pdf-download-form').style.width 				= '50%';
	$('pdf-download-form').style.backgroundColor 	= '#fff';
	$('pdf-download-form').style.textAlign 			= 'center';
	$('pdf-download-form').style.verticalAlign 		= 'middle';
	$('pdf-download-form').style.padding	 		= '10px';
	$('pdf-download-form').style.border		 		= '2px solid #000';
	$('filenamePdf').value = file;
	return false;
}
