var windowHeight = 500;
var windowWidth = 600;

function print(content) {

	printPop = window.open("printPopup.html?toPrint=" + content,"printPop","width="+ windowWidth +",height="+ windowHeight +",left=0,top=0,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
	printPop.focus();

}
