function PopWin(url, target, width, height){
  var ContextWindow = window.open(url, target,'resizable=0,scrollbars=0,toolbar=0,status=0,left=30,top=50,width='+width+',height='+height);

  if (ContextWindow && !ContextWindow.closed)
		ContextWindow.focus();

  return false;
}