function openNewWindowNoTools(url, name, width, height, xOffSet, yOffSet) {

	var xPosition, yPosition;

	if(width == -1) {
		width = screen.availWidth - 10;
	}
	
	if(height == -1) {
		height = screen.availHeight - 50;
	}
	
  //SET X,Y POSITION TO TOP LEFT CORNER OF SCREEN + OFFSET AMOUNT
	if(navigator.appName == "Microsoft Internet Explorer") {
		xPosition = window.screenLeft + xOffSet;
		yPosition = window.screenTop + yOffSet;
	} else {
		xPosition = window.screenX + xOffSet;
		yPosition = window.screenY + yOffSet;
	}
    
  //IF GREATER THAT SCREEN SIZE, SET X,Y POSITION TO DEFAULT - TOP LEFT CORNER OF SCREEN
	if(xPosition + width > screen.availWidth || yPosition + height > screen.availHeight) {
		xPosition = 0;
		yPosition = 0;
	}
		
	window.open(url, name, "toolbar=0,location=0,directories=0,status=yes,menubar=no,scrollbars=1,resizable=yes,screenX=" + xPosition + ",screenY=" + yPosition + ",left=" + xPosition + ",top=" + yPosition + ",width=" + width + ",height=" + height);
		
}
