﻿//Open new window
function openWin() {
	args = openWin.arguments;
	window.open(args[0], 'openWin', 'width=790,height=580,scrollbars=1,status=1,toolbar=1,menubar=1,resizable=1');
	return false;
}

jQuery(function() {
	jQuery("a.popup").click(function() {
		window.open(this.href, "popupwin", "status=0, toolbar=0, location=0, menubar=0, width=790, height=580, resizeable, scrollbars");
		return false;
	})
});

function PrintWindow() {
	window.print()
}