// this script is copry right to Stuart Eaves 2001
// lets begin a script stu...ok i love JavaScript
// soo  i begin to type....and type...and drink mountain dew (registered to pepsi)
// i think i will make the script now..i am only getting minimum wage to do it
function cooltrick(text) {
	window.status = text;
	return true;
}
function bye() {
	window.status = " ";
	return true;
}
// i will add more eventually
// ooo a new function i can do!!!
function OpenANewOne(url,name,h,w) {
	open( url , name, "toolbar=no,status=no,height=" + h + ",width=" + w);
}
// ahh i've done another one
// another pointless function wahoo!!!
function closeherup() {
	window.close()
}
// and yet another one
function printher() {
	// like the spelling of printer...printher..hahaha
	window.print()
}