function setPageSize(flashWidth, flashHeight)
{
	if ((flashWidth<=document.body.clientWidth) && (flashHeight<=document.body.clientHeight))
	{
		document.getElementById("flashcontent").style.width = document.body.clientWidth;
		document.getElementById("flashcontent").style.height = document.body.clientHeight;
	}
	
	if ((flashWidth<=document.body.clientWidth) && (flashHeight>document.body.clientHeight))
	{
		document.getElementById("flashcontent").style.width = document.body.clientWidth;
		document.getElementById("flashcontent").style.height = flashHeight;
	}
	
	if ((flashWidth>document.body.clientWidth) && (flashHeight<=document.body.clientHeight))
	{
		document.getElementById("flashcontent").style.width = flashWidth;
		document.getElementById("flashcontent").style.height = document.body.clientHeight;
	}
	
	if ((flashWidth>document.body.clientWidth) && (flashHeight>document.body.clientHeight))
	{
		document.getElementById("flashcontent").style.width = flashWidth;
		document.getElementById("flashcontent").style.height = flashHeight;
	}
}
