// JavaScript Document
var popUpWin=0;
function newWindow(W,H,URL,HTML){
  if(popUpWin){
    if(!popUpWin.closed) popUpWin.close();
  }
  if (URL != '') {
  	var popUpWin = window.open(URL, 'popUpWin', 'dependent,scrollbars,resizable,width=' + 
  				(W+12) + ',height=' + (H+12) + ',left=' + ((screen.width/2)-(W/2)) + ', top=' + ((screen.height/2)-(H/2)));  
  } else {
  	var popUpWin = window.open('', 'popUpWin', 'dependent,scrollbars,resizable,width=' + 
  				(W+12) + ',height=' + (H+12) + ',left=' + ((screen.width/2)-(W/2)) + ', top=' + ((screen.height/2)-(H/2)));
  }
  if (HTML != '') {
	  var head = '<head><title></title></head>';
	  var body = '<body><div align="center"><img src="' + HTML + '"></div></body>';
	  popUpWin.document.write(head + body);
  }
  popUpWin.focus();
}

function go(url){
	parent.location=url; //parent.location.pathnam
} 