// JavaScript Document

function popWin(myLink, myWidth, myHeight){
     
	var myWindow = window.open(myLink,'newWin'+new Date().getTime(),'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+myWidth+',height='+myHeight+'');
  }