/**
 * blank window
 */
function openWindow(uri, windowName)
{
	var targetWindow = window.open(uri, windowName);
	targetWindow.focus();
}