﻿<!--

//Open new window
function winOpen(URL,WinTITLE,wx,wy)	{
	x = (screen.width  - wx) / 2;
	y = (screen.height - wy) / 2;
	subWin = window.open(URL,WinTITLE,"left="+x+",top="+y+", scrollbars=yes, location=no, menubar=no, resizable=yes, width="+wx+",height="+wy);
}

//Show-hide switch
function togglePlatforms(switchThis) {
	switchThis.className=(switchThis.className=='hidePlatforms')?'showPlatforms':'hidePlatforms'
}

// -->

