function openWindow(linkURL, windowWidth, windowHeight, haveToolbars,
		url_for_google) {
	var width = screen.width;
	var height = screen.height;
	myWindow = window.open(linkURL, 'htmluploadWin',
			'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars='
					+ haveToolbars
					+ ',resizable=yes,top=0,x=0,y=0,left=0,width='
					+ windowWidth + ',height=' + windowHeight);
	if (myWindow) {
		myWindow.moveTo((width - windowWidth) / 2, (height - windowHeight) / 2);
	}

	if (url_for_google != null) {
		if (typeof urchinTracker == 'function')
			urchinTracker('/" + url_for_google + "');
	}
}

function openDefaultWindow(linkURL) {
	window.open(linkURL);
}