// JavaScript Document

function show_pw()
  {
	
	if (document.getElementById("showpw" ).checked) 
			document.getElementById("Player_Password" ).type = 'text'
	else document.getElementById("Player_Password" ).type = 'password'		

};