/* javascript to open pop upwindow*/

function popup_scroll(pagename,w_height,w_width) {
		
var newWindow = window.open(pagename,'popup','height=' + w_height + ',width=' + w_width + ',left=50,top=50,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,directories=no,status=no');
newWindow.focus();
		}

