// JavaScript Document
function popup(url, width, height, name, scroll, status){
	if(!width){
		width = 450;
	}
	
	if(!height){
		height = 400;
	}
	
	if(!name){
		name = 'popup';
	}
	
	if(!scroll){
		scroll = 'no';
	}
	else {
		scroll = 'yes';
	}	
	
	if(!status){
		status = 'no';
	}
	else {
		status = 'yes';
	}
	
	attribs = 'scrollbars=' + scroll;
	attribs += ', status=' + status;
	attribs += ', resizable=1';
	
	//alert(attribs);
	
	window.open(url,name,'width=' + width + ',height=' + height + ', ' + attribs);
	
	return false;
}