
function newOpen(urladd, disp){
	newWin = window.open(urladd,"","width=800,height=600,resizable=yes,scrollbars=yes");
}

function newOpen2(urladd, disp){
	newWin = window.open(urladd + "?ref=" + window.location.href,"","width=800,height=600,resizable=yes,scrollbars=yes");
}

function printDiv()
{
  var printer = window.open('','','width=300,height=300');
	printer.document.open("text/html");
	printer.document.write(document.getElementById('printingstuff').innerHTML);
	printer.document.close();
	printer.window.close();
	printer.print();
	//alert("Printing the \"printingstuff\" div...");
}

