// SeeCreature Design © 2007
// Version 1.0
// THIS CODE IS STILL UNDER ACTIVE DEVELOPMENT. IT IS NOT FINAL.
// And, it may absolutely not be used without express written permission from SeeCreature.

function windowSizeChanged(yHight) {
		document.body.style.height = yHight;	
		}
function openNewWindow(theURL, winName){
	var width
	var height
	var leftdist
	var topdist
	width = screen.width;
	height = screen.height;
	leftdist = Math.round(width);
	topdist = Math.round(height);
	window.open(theURL, winName,'width='+ width +',height='+ height +',top='+ topdist +',left='+ leftdist +',resizable=0,menubar=0,location=0,scrollbars=0')
	//window.open (theURL, winName,"width=100,height=100,resizable=0,menubar=0,location=0,scrollbars=0"); 
	}

function closeWindow(){
	window.close;
	}