// JavaScript Document
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+'')
  popUpWin.focus();
}
function newWindow(disclaim) {
disWindow = window.open
	(disclaim, "disWin","width=450px, height=240px")
	disWindow.focus()
}

function newWindow2(audio) {
audioWindow = window.open
	(audio, "audioWin","width=495px, height=600px")
	audioWindow.focus()
}
function newWindow3(player) {
playerWindow = window.open
	(player, "playWin","width=200px, height=10px")
	playerWindow.focus()
}