

function openFormWin(href, width, height) {
	var h = height, w = width, page = href
	var winLeft = (screen.width - w) / 2;
	var winTop = (screen.height - h) / 2;
	var winProperties = 'height=' + h + ',width=' + w + ',top=' + winTop + ',left=' + winLeft + ',scrollbars=yes,resizable=yes'
	var win = window.open(page, "smallWin", winProperties)
	if (parseInt(navigator.appVersion) >= 4) win.window.focus();

}
function MM_openBrWindow(theURL,winName,features) { 
	window.open(theURL,winName,features);
}
