// JavaScript Document
function openwindow(url,h,w)
{
	var attributes = 'resizable=yes,height=' + h + ',width=' + w;
	var newwindow = window.open(url, 'popupwindow', attributes);
	if (window.focus) {newwindow.focus()}

	//window.open(url);

	return false;
}
