function openWebsite( url, name, width, height, props )
{
	var properties = "scrollbars="+props+", location="+props+", menubar="+props+", resizable="+props+", toolbar="+props+"";	
	
	var winTop = ( screen.height - height ) / 2;
	var winLeft = ( screen.width - width ) / 2;

	if( props == 1 || props == 0 )
	{
		newWin = window.open( url, name, 'width=' + width + ', height=' + height + ', top=' + winTop + ', left=' + winLeft + ', ' + properties + '' );
	}
	else
	{
		newWin = window.open( url, name, 'width=' + width + ', height=' + height + ', top=' + winTop + ', left=' + winLeft + '' );	
	}

	if( newWin != undefined || newWin != null ) newWin.focus();
}

function openTestrun28( url, height, width )
{
	var properties = "scrollbars=1";	
	
	var winTop = ( screen.height - height ) / 2;
	var winLeft = ( screen.width - width ) / 2;
	
	newWin = window.open( url, "testrun28", 'width=' + width + ', height=' + height + ', top=' + winTop + ', left=' + winLeft + ', ' + properties + '' );
	if( newWin != undefined || newWin != null ) newWin.focus();
}