var kludgedWidth = 320 + 50
var kludgedHeight = 240 + 100

function remote(fileName,kWidth,kHeight)
{
	if ( kWidth == null ){
		kWidth = kludgedWidth
		}
	if ( kHeight == null ){
		kHeight = kludgedHeight
		}
	
	RemoteWin=window.open(fileName,"","resizable=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,copyhistory=0,width=" + kWidth + ",height=" + kHeight + "")
	RemoteWin.creator=self
}