var newWindow = "";

function openNewWindow(aHref)
{
	newWindow = window.open(aHref, "newWindow", "height=280, width=650, scrollbars=1, resizable=0, location=0, status=0, toolbar=0");
	newWindow.focus();
}
