function displayWindow(url, width, height, top, left) {
var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',top=' + top + ',left=' + left + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes');
}


function redirectOutput(myForm) {
var w = window.open('about:blank','Popup_Window','height=120,width=345,top=80,left=120,status=no,toolbar=no,menubar=no,location=no,resizable=no,copyhistory=yes');
myForm.target = 'Popup_Window';
return true;
}