function Pop(thisUrl, w, h) {
	screenwidth = screen.availWidth;
	screenheight = screen.availHeight;
	thisWidth = w || 500;
	thisHeight = h || 600;
	thisLeft = ((screenwidth - thisWidth)/2);
	thisTop = ((screenheight - thisHeight)/2);
	optionString = ('width=' + thisWidth + ',height=' + thisHeight + ',top=' + thisTop + ',left=' + thisLeft + ',status=no,menubar=no,resizable=no,scrollbars=yes,toolbar=no');
	window.open(thisUrl,'',optionString);
}

function openWindow(thisUrl, w, h) {
	screenwidth = screen.availWidth;
	screenheight = screen.availHeight;
	thisWidth = w || 500;
	thisHeight = h || 600;
	thisLeft = ((screenwidth - thisWidth)/2);
	thisTop = ((screenheight - thisHeight)/2);
	optionString = ('width=' + thisWidth + ',height=' + thisHeight + ',top=' + thisTop + ',left=' + thisLeft + ',status=yes,menubar=yes,resizable=yes,scrollbars=yes,toolbar=yes');
	window.open(thisUrl,'',optionString);
}