function popUPwindow(url, name, width, height, scroller){ var outStr = 'height=' + height +  ',width=' + width;if (scroller != 'true'){outStr = outStr + ',menubar=no, toolbar=no, locations=no, directories=no, Status=no, scrollbars=no, resizable=no, top=100, left=200';}else{outStr=outStr + ',menubar=no, toolbar=no, location=no, directories=no, status=no, scrollbars, resizable=no, top=100, left=200';}window.open(url, name, outStr);						}