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