// JavaScript Document

function openWin(openURL,width,height){
 var winWidth = "width=" + width;
 var winHeight = ",height=" + height;
 var winStyle = ",top=80,left=150,location=no,status=no,resizable=no,scrollbars=no,menubar=no,status=no'";
 var winProps = winWidth + winHeight + winStyle; 
 window.open(openURL,'smallwin',winProps)
}

