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

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

  return false;
}