function OpenScreen(alt,namewindow,image,width,height,scrollbar){
		newWindow = window.open("",namewindow,"width="+width+",height="+height+",scrollbars="+scrollbar+",left=50,top=50");
		newWindow.document.open();
		newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
		newWindow.document.write('<img src=\"'+image+'\" alt=\"'+alt+'\">');
		newWindow.document.write('</body></html>');
		newWindow.document.close();
		newWindow.focus();
}
function download(section,type,id) {
	window.open('download.php?section=' + section + '&type=' + type + '&id=' + id,'download' + section + '_' + id,'width=300,height=100');
}
function webpages(section,type,id) {
	window.open('webpages.php?section=' + section + '&type=' + type + '&id=' + id,'webpages' + section + '_' + id,'');
}
function OpenPopup(pagename,namewindow,width,height,other){
		newWindow = window.open(pagename,namewindow,"width="+width+",height="+height+other+",left=50,top=50");
		newWindow.focus();
}
