function OpenWindow(url,target,w,h,l,t,scroll,resize)
	{
	if(!scroll) scroll = 'no' ;
	if(!resize) resize = 'no' ;
	var features = "toolbar=no,scrollbars=" + scroll + ",location=no,status=no,width=" + w + ",height=" + h + ",resizable=" + resize + ",menubar=no,directories=no,top=" + t + ",left=" + l ;
	hires = window.open(url,target,features) ;
	return false ;
	}	
