function openWin(page, w, h) {



popWindow = window.open(page,"daughter","scrollbars=yes,width=" + w + ",height=" + h + ",left=20,top=20,alwaysRaised=yes,resizable=yes,toolbar=yes,menubar=yes,directories=yes");







}

function openWin1(page, w, h) {



popWindow = window.open(page,"daughter","scrollbars=yes,width=" + w + ",height=" + h + ",left=20,top=20,alwaysRaised=yes,resizable=yes");







}






//print window opener function



function printWin()

{

locString = new String(window.location);

locStringStripped = new String(locString.substring(0, locString.length-3))

locStringHTML = new String(locStringStripped+'html')

window.open(locStringHTML, "Printable", "location=no,scrollbars=yes,directories=no,toolbar=yes,status=no,menubar=yes,resizable=yes,width=500,height=600")



}

