// JavaScript Document

function popup(url, width, height){
	window_options = 'width='+width+', height='+height+', top=100, left=100, toolbar=no, menubar=no, location=no, resizable=yes, scrollbars=yes, status=no';
	window.open(url, 'window_name', window_options);
}