// JavaScript Document
function openWindow(url, w, h, s, r)
	{
		popup = window.open(url, 'target', "width="+w+", height="+h+", scrollbars="+s+", resizable="+r+"");
		popup.window.focus();
	}
