$(function() {
	/*
	 * Initialise print preview plugin
	 */
	// Add link for print preview and intialise
//	$('#aside').prepend('<a class="print-preview">Print this pagex</a>');
	
   	$('a.print-preview').attr("href", "javascript:openPrintPreview()");

	createEmailLink();
});


function openPrintPreview(){
	printPreviewURL = __DMServer + "/printPreview?url=" + document.URL; 
	mywindow = window.open(printPreviewURL,'printPreview', 'scrollbars=yes,menubar=no,height=800,width=725,resizable=no,toolbar=no,location=no,status=no');
	
    
}



function createEmailLink(){
	url = document.URL;
	title = document.title;
	$("#email-link").attr("href", "mailto:?SUBJECT=" + title + "&BODY="+ title + " %0D" + url); 
}
