
	function ut_popup(passurl){var url = 				
		"http://ultrathin.pwc.com/ultrathin/utStart?url="+passurl
		var w = window.open(url ,'ut', 'scrollbars=no,toolbar=no,width=655,height=375,top=100,left=100');
		w.focus();
    }

    //following function replaces above -----
    var Apdf;
    function setPDF(win) {
        win.document.pdfForm.pdf.value = Apdf;
    }

    function popup(URL, pdf) {
        mywindow = window.open(URL,
      "mywindow", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=665,height=375,top=100, left = 100"); 
        Apdf = pdf;
        window.setTimeout('setPDF(mywindow)', 1000);
    }
    // ------

    //this below function makes above 2 functions redundant
    function popup2(URL) {
        mywindow = window.open(URL,
      "mywindow", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=665,height=375,top=100, left = 100");

    }