// FLASH RESIZER

function resizeSWF(nHeight) {
	nHeight += "px";
	document.getElementById("index").style.height = nHeight;
}

function resizePRC() {
	document.getElementById("index").style.height = "100%";
}

function RewindFlashMovie()
{
	var flashMovie=document.getElementById("index");
	flashMovie.Rewind();
	flashMovie.Play();
}
