Best way to setup GUI text so it's always in the same place?

Hi I made this in game keyboard and screen. http://twexa.com/examples/ I’ve read through the forums and tried a half a dozen methods for getting the text that you type to always show up in the same place (absolute positions, screen width/2, gui matrix scaling, etc) but no matter what method I try it’s never consistent when you resize the browser, the text always moves? Is there a foolproof way to always have my text appear in the same spot on the screen no matter what size the browser window is?

Thanks!

Yeah, Here’s an example :

// JavaScript
function OnGUI () {
	GUI.Box (Rect (0,0,100,50), "Top-left");
	GUI.Box (Rect (Screen.width - 100,0,100,50), "Top-right");
	GUI.Box (Rect (0,Screen.height - 50,100,50), "Bottom-left");
	GUI.Box (Rect (Screen.width - 100,Screen.height - 50,100,50), "Bottom-right");
}

Awesome thanks so much for taking the time!!!