function openWindow(thePage,theWidth,theHeight) {

// defaults
if (theWidth==null) {theWidth=700}
if (theHeight==null) {theHeight=500}

// fix ampersand for URL if print function
if (thePage.indexOf("/print/setup.aspx") > 0) {
	thePage = thePage.replace('&','%26')
}

newwin = window.open(thePage,"windowname",config='height='+ theHeight + ',width=' + theWidth + ',left=0,top=0,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=no')

newwin.focus();
}