//  PersCall;
//  Aufruf Persisch Transscription
//  Aufruf-Beispiel: <body class="Dia" LANG="DE" onLoad="Transciption ('01')">

//  ------------------------------------------------------------
  var framePage = 'TransBG.htm';
  var diaWindow = null;
  var xPos = 0;
  var yPos = 0;

//  ------------------------------------------------------------

function setName (n) {
	window.name = n;
}

//  ------------------------------------------------------------
function Transcription (n,w,h) {
  var wWidth = w;
  var wHeight = h;
  var features = 'width="'+wWidth+'",height="'+wHeight+'",left="'+xPos+'",top="'+yPos+'",resizable="1"';
  alert('Transscription: window.open('+ framePage+ ', '+n+', '+features)+');';
  transWindow = window.open(framePage, n, features);
}

//  ------------------------------------------------------------