using javascript to open and scroll a webpage
i am using
function open(){
window.open("URL");
}
to open a webpage..and
function scroll(){
scroll = setInterval(function(){ window.scrollBy(0, 1000);
}
to scroll to the bottom of the page..
it works well when any one function is called on the onclick html button..but when i call two functions in a single button it is not working...not even open the webpage action..
my complete code is below