/* Window size */
onload = init;
window.onresize = init;

var winWith = 1024; //Œቡ
var winHeight = 693;//Œc

function init(){
	var sizeW = document.body.clientWidth;
	var sizeH = document.body.clientHeight;	

	obj = document.getElementById("flashcontent").style;

	if (sizeW < winWith) {
		obj.width = "1024px";
	} else {
		obj.width = "100%";
	}

	if (sizeH < winHeight) {
		obj.height = "693px";
	} else {
		obj.height = "100%";
	}
}
function window01(){
	window.open("/paulandjoe/utility.html#environmentSection","subwin","width=700, menubar=yes, toolbar=yes, scrollbars=yes, location=yes, status=yes, resizable=yes");
}
function window02(){
	window.open("/paulandjoe/utility.html#contactSection","subwin","width=700, menubar=yes, toolbar=yes, scrollbars=yes, location=yes, status=yes, resizable=yes");
}
function window03(){
	window.open("/paulandjoe/utility.html#privacySection","subwin","width=700, menubar=yes, toolbar=yes, scrollbars=yes, location=yes, status=yes, resizable=yes");
}
