// JavaScript Document
  function openWin(url,width,height) {
	 var TitleName = Math.round(Math.random()*9);
	 POP=window.open(url,TitleName,"toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+ width +",height=" + height);
  }