var newwindow;
function popupmeasures(url,iHeight,iWidth)
{
	newwindow=window.open(url,'name','height=' + iHeight + ',width=' + iWidth);
	if (window.focus) {newwindow.focus()}
}
function popupwindow(url)
{
	newwindow=window.open(url,'name','height=400,width=200');
	if (window.focus) {newwindow.focus()}
}
