/**
 * @author James Scott
 */

/**
 * 
 * @param {Object} event
 */
function PrintEvent(event) {

    var elm = $(event);
		if (elm) {
		var ss1 = '<link rel="stylesheet" type="text/css" href="/js/nifty/niftyPrint.css">';
		var ss2 = '<link rel="stylesheet" type="text/css" href="/wp/wp-content/themes/dallas/print-style.css">';
		var win = window.open();
		win.focus();
		win.document.open();
		win.document.write('<html><head>' + ss1 + ss2 + '</head><body>');
		win.document.write(elm.get('html'));
		win.document.write('</body></html>');
		win.document.close();
		win.print();
		win.close();
	}

}